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 7343035 commit ec500b6Copy full SHA for ec500b6
src/databricks/sql/result_set.py
@@ -510,7 +510,7 @@ def _convert_json_to_arrow(self, rows):
510
names = [col[0] for col in self.description]
511
return pyarrow.Table.from_arrays(columns, names=names)
512
513
- def _convert_json_types(self, rows):
+ def _convert_json_types(self, rows: List) -> List:
514
"""
515
Convert raw data rows to Row objects with named columns based on description.
516
Also converts string values to appropriate Python types based on column metadata.
0 commit comments