You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered: