-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
SQL: Add Misc Geometry Property functions #35698
Conversation
Adds support for ST_Dimension, ST_GeometryType, ST_X, ST_Y, ST_XMin, ST_XMax, ST_YMin, ST_YMax functions. Relates to elastic#29872
Pinging @elastic/es-search-aggs |
retest this please |
Labeled it as WIP for now since I need to do some conflict resolution here first due to #35521. |
} | ||
|
||
public double minX() { | ||
return shapeBuilder.buildS4J().getBoundingBox().getMinX(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nknize that's probably not the best way to handle this. Do you have any suggestions on what can be done here?
Part of this PR is superseded by #41104 and the rest will be implemented on a new basis in a different PR. Closing. |
Adds support for ST_Dimension, ST_GeometryType, ST_X, ST_Y, ST_XMin,
ST_XMax, ST_YMin, ST_YMax functions.
Relates to #29872