Skip to content

Commit ac984e4

Browse files
remove un-necessary replace call
Signed-off-by: varun-edachali-dbx <[email protected]>
1 parent 42263c4 commit ac984e4

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
@@ -1092,11 +1092,7 @@ def _handle_execute_response(self, resp, cursor):
10921092
resp.directResults and resp.directResults.operationStatus,
10931093
)
10941094

1095-
execute_response = self._results_message_to_execute_response(
1096-
resp, final_operation_state
1097-
)
1098-
execute_response = execute_response._replace(command_id=command_id)
1099-
return execute_response
1095+
return self._results_message_to_execute_response(resp, final_operation_state)
11001096

11011097
def _handle_execute_response_async(self, resp, cursor):
11021098
command_id = CommandId.from_thrift_handle(resp.operationHandle)

0 commit comments

Comments
 (0)