浏览代码

fix suggestions for metric column

Sven Klemm 7 年之前
父节点
当前提交
e2c3b6c6c5
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      public/app/plugins/datasource/postgres/meta_query.ts

+ 1 - 1
public/app/plugins/datasource/postgres/meta_query.ts

@@ -130,7 +130,7 @@ table_schema IN (
         break;
       }
       case 'group': {
-        query += " AND data_type IN ('text','char','varchar')";
+        query += " AND data_type IN ('text','character','character varying')";
         break;
       }
     }