eitsupi commented on PR #367:
URL: https://github.com/apache/arrow-nanoarrow/pull/367#issuecomment-1930000474
FYI, note that Python Polars can create Arrow files with the Utf8View type
written to them by using the experimental option;
```python
>>> import polars as pl
>>> import pyarrow.feather as feather
>>> pl.DataFrame({"a": ["foo"]}).write_ipc("test.arrow", future=True)
>>> feather.read_table("test.arrow")
pyarrow.Table
a: string_view
----
a: [["foo"]]
```
Since Rust Polars started using the Utf8View type, downstream Rust projects
will use it and Rust Polars has started using the Utf8View type.
--
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]