We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec500b6 commit 0b3e91dCopy full SHA for 0b3e91d
src/databricks/sql/result_set.py
@@ -499,7 +499,7 @@ def __init__(
499
arrow_schema_bytes=execute_response.arrow_schema_bytes or b"",
500
)
501
502
- def _convert_json_to_arrow(self, rows):
+ def _convert_json_to_arrow(self, rows: List) -> "pyarrow.Table":
503
"""
504
Convert raw data rows to Arrow table.
505
@@ -544,7 +544,7 @@ def _convert_json_types(self, rows: List) -> List:
544
545
return converted_rows
546
547
- def _create_json_table(self, rows):
+ def _create_json_table(self, rows: List) -> List[Row]:
548
549
Convert raw data rows to Row objects with named columns based on description.
550
Also converts string values to appropriate Python types based on column metadata.
0 commit comments