-
Notifications
You must be signed in to change notification settings - Fork 638
bug: Unable to cache table after creating geometry column #10324
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Milestone
Comments
Thanks for reporting this, @jstammers ! It looks like we're generating incorrect SQL for the temporary table definition in the CREATE TEMPORARY TABLE "temp"."main"."ibis_cached_ibsdggv2efdinijummdputbqly" ("OBJECTID" INT, "Shape_Leng" DOUBLE, "Shape_Area" DOUBLE, "zone" TEXT, "LocationID" INT, "borough" TEXT, "x_cent" DOUBLE, "y_cent" DOUBLE, "geom" GEOMETRY(POINT)) That should just be |
/take |
1 task
anjakefala
added a commit
to anjakefala/ibis
that referenced
this issue
Oct 18, 2024
…roject#10324) Ensure compatibility with DuckDB's implementation of geospatial types. Closes ibis-project#10324
anjakefala
added a commit
to anjakefala/ibis
that referenced
this issue
Oct 22, 2024
…roject#10324) Ensure compatibility with DuckDB's implementation of geospatial types. Closes ibis-project#10324
cpcloud
pushed a commit
to anjakefala/ibis
that referenced
this issue
Oct 23, 2024
…roject#10324) Ensure compatibility with DuckDB's implementation of geospatial types. Closes ibis-project#10324
cpcloud
added a commit
that referenced
this issue
Oct 24, 2024
#10333) Co-authored-by: Phillip Cloud <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
What happened?
I'm trying to create a table with a
geometry
column using given lat/long coodinates.I can successfully create this column, but when calling
.cache()
, I get aParserError
.Here's an example that replicates it
I don't see this behaviour when I do the following
The only material difference in the SQL in each case is the use of
ST_POINT
when creating the geometryWhat version of ibis are you using?
9.5.0
What backend(s) are you using, if any?
DuckDB
Relevant log output
Code of Conduct
The text was updated successfully, but these errors were encountered: