Skip to content

Commit 2cd04df

Browse files
reduce diff (remove explicit tuple conversion)
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 39c41ab commit 2cd04df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/databricks/sql/backend/thrift_backend.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -727,7 +727,7 @@ def _col_to_description(col):
727727
else:
728728
precision, scale = None, None
729729

730-
return (col.columnName, cleaned_type, None, None, precision, scale, None)
730+
return col.columnName, cleaned_type, None, None, precision, scale, None
731731

732732
@staticmethod
733733
def _hive_schema_to_description(t_table_schema):

0 commit comments

Comments
 (0)