Skip to content

Commit ba23683

Browse files
committed
Hotfix on array type
1 parent d27f20d commit ba23683

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/databricks/sqlalchemy/dialect/compiler.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,7 @@ def visit_JSON(self, type_):
4848
def visit_ARRAY(self, type_):
4949
element_type = type_.item_type
5050
element_type = str(element_type)
51-
print(element_type)
5251
if element_type == 'VARCHAR':
53-
print("String type if statement hit")
5452
return "ARRAY<STRING>"
5553
else:
5654
return "ARRAY<{type}>".format(type=type_.item_type)

0 commit comments

Comments
 (0)