get timecolumn datatype on timecolumn change

pull/11081/head
Sven Klemm 7 years ago
parent 1dd8192d51
commit c9bbdf244c
  1. 5
      public/app/plugins/datasource/postgres/query_ctrl.ts

@ -190,6 +190,11 @@ export class PostgresQueryCtrl extends QueryCtrl {
timeColumnChanged() {
this.target.timeColumn = this.timeColumnSegment.value;
this.datasource.metricFindQuery(this.metaBuilder.buildDatatypeQuery(this.target.timeColumn)).then(result => {
if (result.length === 1) {
this.target.timeColumnType = result[0];
}
});
this.panelCtrl.refresh();
}

Loading…
Cancel
Save