We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a42ddf commit 4cadfb8Copy full SHA for 4cadfb8
1 file changed
src/databricks/sql/client.py
@@ -1172,7 +1172,7 @@ def cancel(self) -> None:
1172
def close(self) -> None:
1173
"""Close cursor"""
1174
self.open = False
1175
-
+
1176
# Close active operation handle if it exists
1177
if self.active_op_handle:
1178
try:
@@ -1182,7 +1182,7 @@ def close(self) -> None:
1182
logging.warning(f"Error closing operation handle: {e}")
1183
finally:
1184
self.active_op_handle = None
1185
1186
if self.active_result_set:
1187
self._close_and_clear_active_result_set()
1188
0 commit comments