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
If I switch to_pandas to to_polars, everything works as expected.
importglaredbimportpandasaspdimportpolarsasplcon=glaredb.connect("glaredb://...")
df=con.sql("SELECT * FROM './b.parquet'").to_pandas()
con.execute("create table test as SELECT * FROM df")
External error: Execution error: failed to create table in storage: Schema error: Invalid data type for Delta Lake: Null
I did not test if this is specific to Parquet, and so it might be useful to just create a simple df in pandas and try the same thing.
I suggest we add a Python test covering this case.
The text was updated successfully, but these errors were encountered:
If I switch
to_pandas
toto_polars
, everything works as expected.I did not test if this is specific to Parquet, and so it might be useful to just create a simple df in pandas and try the same thing.
I suggest we add a Python test covering this case.
The text was updated successfully, but these errors were encountered: