File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 11from __future__ import annotations
22
33from abc import ABC , abstractmethod
4- from typing import List , Optional , Tuple , TYPE_CHECKING
4+ from typing import List , Optional , TYPE_CHECKING , Tuple
55
66import logging
77import pandas
1616 from databricks .sql .client import Connection
1717from databricks .sql .backend .databricks_client import DatabricksClient
1818from databricks .sql .types import Row
19- from databricks .sql .exc import Error , RequestError , CursorAlreadyClosedError
19+ from databricks .sql .exc import RequestError , CursorAlreadyClosedError
2020from databricks .sql .utils import (
2121 ColumnTable ,
2222 ColumnQueue ,
@@ -249,7 +249,7 @@ def __init__(
249249 description = execute_response .description ,
250250 is_staging_operation = execute_response .is_staging_operation ,
251251 lz4_compressed = execute_response .lz4_compressed ,
252- arrow_schema_bytes = execute_response .arrow_schema_bytes or b"" ,
252+ arrow_schema_bytes = execute_response .arrow_schema_bytes ,
253253 )
254254
255255 # Initialize results queue if not provided
You can’t perform that action at this time.
0 commit comments