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 be1dea4 commit 5ed4293Copy full SHA for 5ed4293
bigframes/core/blocks.py
@@ -715,7 +715,8 @@ def to_pandas_batches(
715
try:
716
empty_arrow_table = self.expr.schema.to_pyarrow().empty_table()
717
except pa.ArrowNotImplementedError:
718
- # Bug with some pyarrow versions, empty_table only supports base storage types, not extension types.
+ # Bug with some pyarrow versions(https://github.com/apache/arrow/issues/45262),
719
+ # empty_table only supports base storage types, not extension types.
720
empty_arrow_table = self.expr.schema.to_pyarrow(
721
use_storage_types=True
722
).empty_table()
0 commit comments