Skip to content

Commit 48c83e0

Browse files
remove un-necessary has_more_rows aclc
Signed-off-by: varun-edachali-dbx <varun.edachali@databricks.com>
1 parent 067a019 commit 48c83e0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/databricks/sql/backend/thrift_backend.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -757,11 +757,7 @@ def _results_message_to_execute_response(self, resp, operation_state):
757757
)
758758
direct_results = resp.directResults
759759
has_been_closed_server_side = direct_results and direct_results.closeOperation
760-
has_more_rows = (
761-
(not direct_results)
762-
or (not direct_results.resultSet)
763-
or direct_results.resultSet.hasMoreRows
764-
)
760+
765761
description = self._hive_schema_to_description(
766762
t_result_set_metadata_resp.schema
767763
)

0 commit comments

Comments
 (0)