Skip to content

Commit 68d6276

Browse files
remove un-necessary column skipping
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 059657e commit 68d6276

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/databricks/sql/backend/sea/backend.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -308,9 +308,6 @@ def _extract_description_from_manifest(
308308

309309
columns = []
310310
for col_data in columns_data:
311-
if not isinstance(col_data, dict):
312-
continue
313-
314311
# Format: (name, type_code, display_size, internal_size, precision, scale, null_ok)
315312
columns.append(
316313
(

0 commit comments

Comments
 (0)