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 0b3e91d commit 7664e44Copy full SHA for 7664e44
src/databricks/sql/result_set.py
@@ -562,7 +562,7 @@ def _create_json_table(self, rows: List) -> List[Row]:
562
563
return [ResultRow(*row) for row in rows]
564
565
- def fetchmany_json(self, size: int):
+ def fetchmany_json(self, size: int) -> List:
566
"""
567
Fetch the next set of rows as a columnar table.
568
@@ -583,7 +583,7 @@ def fetchmany_json(self, size: int):
583
584
return results
585
586
- def fetchall_json(self):
+ def fetchall_json(self) -> List:
587
588
Fetch all remaining rows as a columnar table.
589
0 commit comments