Commit a06a6b65 by Sven Klemm

fix timecolumn handling when table changes

parent 015909db
...@@ -209,17 +209,15 @@ export class PostgresQueryCtrl extends QueryCtrl { ...@@ -209,17 +209,15 @@ export class PostgresQueryCtrl extends QueryCtrl {
this.timeColumnSegment.html = segment.html; this.timeColumnSegment.html = segment.html;
this.timeColumnSegment.value = segment.value; this.timeColumnSegment.value = segment.value;
this.target.where = [];
this.target.updatePersistedParts();
this.timeColumnChanged(); this.timeColumnChanged();
} }
} }
}); });
this.datasource.metricFindQuery(this.metaBuilder.buildColumnQuery('value')).then(result => { this.datasource.metricFindQuery(this.metaBuilder.buildColumnQuery('value')).then(result => {
// check if value columns are still valid
if (result.length > 0) { if (result.length > 0) {
this.target.select = [[{ type: 'column', params: [result[0].text] }]]; this.target.select = [[{ type: 'column', params: [result[0].text] }]];
this.target.where = [];
this.target.group = []; this.target.group = [];
} }
this.updateProjection(); this.updateProjection();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment