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
This will be hard, since duckdb casts it to binary when fetching an arrow table:
>>> cur = conn.sql("select st_point(0, 0) as pt")
>>> pat = cur.fetch_arrow_table()
>>> pat
pyarrow.Table
pt: binary
----
pt: [[0000180000000000000000000100000000000000000000000000000000000000]]
e.g., POINT from spatial renders as binary instead of something like
POINT (-117.93367 34.34613)
The text was updated successfully, but these errors were encountered: