kevinjqliu commented on issue #1128:
URL:
https://github.com/apache/iceberg-python/issues/1128#issuecomment-2327686045
As a workaround, you can manually set the table property to force the read
path to use the `string` type
```
from pyiceberg.io import PYARROW_USE_LARGE_TYPES_ON_READ
table = catalog.create_table(
"default.test_table",
schema=df.schema,
properties={PYARROW_USE_LARGE_TYPES_ON_READ: False}
)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]