Skip to content
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

Wrong result from select statement with filter on spatial types #3451

Closed
jennifersp opened this issue May 18, 2022 · 1 comment
Closed

Wrong result from select statement with filter on spatial types #3451

jennifersp opened this issue May 18, 2022 · 1 comment
Labels
bug Something isn't working spatial types

Comments

@jennifersp
Copy link
Contributor

Result of select statement with filter should be empty
Dolt gives:

tp> select i, ST_ASWKT(c) from a;
+---+-------------+
| i | ST_ASWKT(c) |
+---+-------------+
| 1 | POINT(1 2)  |
| 2 | POINT(3 3)  |
+---+-------------+
tp> select i, ST_ASWKT(c) from a where c = linestring(point(0,0),point(2,2));
+---+-------------+
| i | ST_ASWKT(c) |
+---+-------------+
| 1 | POINT(1 2)  |
| 2 | POINT(3 3)  |
+---+-------------+
@jycor
Copy link
Contributor

jycor commented Oct 19, 2022

fix is merged to mian

@jycor jycor closed this as completed Oct 19, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working spatial types
Projects
None yet
Development

No branches or pull requests

3 participants