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 1
1
from __future__ import annotations
2
2
3
3
from abc import ABC , abstractmethod
4
- from typing import List , Optional , Tuple , TYPE_CHECKING
4
+ from typing import List , Optional , TYPE_CHECKING , Tuple
5
5
6
6
import logging
7
7
import pandas
16
16
from databricks .sql .client import Connection
17
17
from databricks .sql .backend .databricks_client import DatabricksClient
18
18
from databricks .sql .types import Row
19
- from databricks .sql .exc import Error , RequestError , CursorAlreadyClosedError
19
+ from databricks .sql .exc import RequestError , CursorAlreadyClosedError
20
20
from databricks .sql .utils import (
21
21
ColumnTable ,
22
22
ColumnQueue ,
@@ -249,7 +249,7 @@ def __init__(
249
249
description = execute_response .description ,
250
250
is_staging_operation = execute_response .is_staging_operation ,
251
251
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 ,
253
253
)
254
254
255
255
# Initialize results queue if not provided
You can’t perform that action at this time.
0 commit comments