소스 검색

remove unused function renderAdhocFilters

Sven Klemm 7 년 전
부모
커밋
17b46804e8
1개의 변경된 파일0개의 추가작업 그리고 6개의 파일을 삭제
  1. 0 6
      public/app/plugins/datasource/postgres/postgres_query.ts

+ 0 - 6
public/app/plugins/datasource/postgres/postgres_query.ts

@@ -236,10 +236,4 @@ export default class PostgresQuery {
     return query;
   }
 
-  renderAdhocFilters(filters) {
-    var conditions = _.map(filters, (tag, index) => {
-      return this.renderWhereConstraint(tag, index, false);
-    });
-    return conditions.join(' ');
-  }
 }