Browse Source

remove unused function renderAdhocFilters

Sven Klemm 7 năm trước cách đây
mục cha
commit
17b46804e8
1 tập tin đã thay đổi với 0 bổ sung6 xóa
  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(' ');
-  }
 }