Skip to content

Commit 9503b70

Browse files
committed
modified comment
1 parent d8bdd4a commit 9503b70

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/databricks/sql/client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1423,8 +1423,8 @@ def fetchall_arrow(self) -> "pyarrow.Table":
14231423
results = pyarrow.concat_tables([results, partial_results])
14241424
self._next_row_index += partial_results.num_rows
14251425

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
1426+
# If PyArrow is installed and we have a ColumnTable result, convert it to PyArrow Table
1427+
# Valid only for metadata commands result set
14281428
if isinstance(results, ColumnTable) and pyarrow:
14291429
data = {
14301430
name: col

0 commit comments

Comments
 (0)