Closed adienes closed 4 months ago
I created a simple PyArrow.jl wrapper to try to help setup inter-language tests for packages like this. But here I'm getting:
using InlineStrings, Arrow, PyArrow, Tables
const ft = pyimport("pyarrow.feather")
Arrow.write("mwe.arrow", Tables.rowtable((; a = String3["xyz", "123"])))
ft.read_table("mwe.arrow")
gives me:
Python:
pyarrow.Table
a: string not null
----
a: [["xyz","123"]]
which seems fine.
So I wonder if it's a polars issue that they are not ignoring unknown extensions?
hm, looks like it: https://github.com/pola-rs/polars/issues/9112#issuecomment-1568995370
ah I see. thanks for looking into it --- I'll bump the issue over there