瀏覽代碼

HUE-4996 [editor] Nested types can not be extended in assist

spaztic1215 9 年之前
父節點
當前提交
63c57d8
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      apps/metastore/src/metastore/parser.py

+ 1 - 0
apps/metastore/src/metastore/parser.py

@@ -31,6 +31,7 @@ def parse_column(name, type_string, comment=None):
   Returns a dictionary of a Hive column's type metadata and
    any complex or nested type info
   """
+  type_string = type_string.lower()
   column = {
     'name': name,
     'comment': comment or ''