remove render code from sql_part

This commit is contained in:
Sven Klemm
2018-07-15 09:52:32 +02:00
parent d9648f1fe7
commit f48060a1bb
3 changed files with 6 additions and 64 deletions

View File

@ -1,6 +1,7 @@
import _ from 'lodash';
import { PostgresQueryBuilder } from './query_builder';
import { QueryCtrl } from 'app/plugins/sdk';
import { SqlPart } from 'app/core/components/sql_part/sql_part';
import PostgresQuery from './postgres_query';
import sqlPart from './sql_part';
@ -32,10 +33,10 @@ export class PostgresQueryCtrl extends QueryCtrl {
whereAdd: any;
timeColumnSegment: any;
metricColumnSegment: any;
selectMenu: any;
selectModels: any[];
groupByParts: any[];
whereParts: any[];
selectMenu: any[];
selectModels: SqlPart[][];
groupByParts: SqlPart[][];
whereParts: SqlPart[][];
groupByAdd: any;
/** @ngInject **/