Skip to content

Commit 0d4f49a

Browse files
fix types
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent a8004a0 commit 0d4f49a

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/databricks/sql/backend/filters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def _filter_sea_result_set(
7171
description=result_set.description,
7272
has_been_closed_server_side=result_set.has_been_closed_server_side,
7373
lz4_compressed=result_set.lz4_compressed,
74-
arrow_schema_bytes=result_set.arrow_schema_bytes,
74+
arrow_schema_bytes=result_set._arrow_schema_bytes,
7575
is_staging_operation=False,
7676
)
7777

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,6 @@ def _results_message_to_execute_response(self, sea_response, command_id):
551551
command_id=command_id,
552552
status=state,
553553
description=description,
554-
has_more_rows=False,
555554
has_been_closed_server_side=False,
556555
lz4_compressed=lz4_compressed,
557556
is_staging_operation=False,

0 commit comments

Comments
 (0)