File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/databricks/sql/backend/sea 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
3- from typing import List , Optional , TYPE_CHECKING
3+ from typing import Any , List , Optional , TYPE_CHECKING
44
55import logging
66
@@ -82,7 +82,7 @@ def __init__(
8282 arrow_schema_bytes = execute_response .arrow_schema_bytes ,
8383 )
8484
85- def _convert_json_types (self , row : List ) -> List :
85+ def _convert_json_types (self , row : List [ str ] ) -> List [ Any ] :
8686 """
8787 Convert string values in the row to appropriate Python types based on column metadata.
8888 """
@@ -109,7 +109,7 @@ def _convert_json_types(self, row: List) -> List:
109109
110110 return converted_row
111111
112- def _convert_json_to_arrow_table (self , rows : List [List ]) -> "pyarrow.Table" :
112+ def _convert_json_to_arrow_table (self , rows : List [List [ str ] ]) -> "pyarrow.Table" :
113113 """
114114 Convert raw data rows to Arrow table.
115115
You can’t perform that action at this time.
0 commit comments