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 d8bdd4a commit 9503b70Copy full SHA for 9503b70
src/databricks/sql/client.py
@@ -1423,8 +1423,8 @@ def fetchall_arrow(self) -> "pyarrow.Table":
1423
results = pyarrow.concat_tables([results, partial_results])
1424
self._next_row_index += partial_results.num_rows
1425
1426
- # If PyArrow is installed and we have a ColumnTable result,
1427
- # convert it to a PyArrow Table for consistency with pre-3.5.0 behavior
+ # If PyArrow is installed and we have a ColumnTable result, convert it to PyArrow Table
+ # Valid only for metadata commands result set
1428
if isinstance(results, ColumnTable) and pyarrow:
1429
data = {
1430
name: col
0 commit comments