We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d27f20d commit ba23683Copy full SHA for ba23683
src/databricks/sqlalchemy/dialect/compiler.py
@@ -48,9 +48,7 @@ def visit_JSON(self, type_):
48
def visit_ARRAY(self, type_):
49
element_type = type_.item_type
50
element_type = str(element_type)
51
- print(element_type)
52
if element_type == 'VARCHAR':
53
- print("String type if statement hit")
54
return "ARRAY<STRING>"
55
else:
56
return "ARRAY<{type}>".format(type=type_.item_type)
0 commit comments