diff --git a/public/app/plugins/datasource/postgres/postgres_query.ts b/public/app/plugins/datasource/postgres/postgres_query.ts index 8ae94f7b68ec..cdb51c005619 100644 --- a/public/app/plugins/datasource/postgres/postgres_query.ts +++ b/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(' '); - } }