소스 검색

get timecolumn datatype on timecolumn change

Sven Klemm 7 년 전
부모
커밋
c9bbdf244c
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      public/app/plugins/datasource/postgres/query_ctrl.ts

+ 5 - 0
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();
   }