Skip to content

Commit 5ed4293

Browse files
committed
Add pyarrow id to comments
1 parent be1dea4 commit 5ed4293

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bigframes/core/blocks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -715,7 +715,8 @@ def to_pandas_batches(
715715
try:
716716
empty_arrow_table = self.expr.schema.to_pyarrow().empty_table()
717717
except pa.ArrowNotImplementedError:
718-
# Bug with some pyarrow versions, empty_table only supports base storage types, not extension types.
718+
# Bug with some pyarrow versions(https://github.com/apache/arrow/issues/45262),
719+
# empty_table only supports base storage types, not extension types.
719720
empty_arrow_table = self.expr.schema.to_pyarrow(
720721
use_storage_types=True
721722
).empty_table()

0 commit comments

Comments
 (0)