Преглед изворни кода

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 ''