-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
geo/geomfn: implement ST_SymDifference #53636
Conversation
Thank you for contributing to CockroachDB. Please ensure you have followed the guidelines for creating a PR. My owl senses detect your PR is good for review. Please keep an eye out for any test failures in CI. I have added a few people who may be able to assist in reviewing: 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is otan. |
Added ST_SymDifference builtin. Release justification: low-risk update to new functionality Release note (sql change): Implemented the geometry based builtin `ST_SymDifference`. Resolves: cockroachdb#49051
0ac6c48
to
6d9501e
Compare
Thank you for updating your pull request. My owl senses detect your PR is good for review. Please keep an eye out for any test failures in CI. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is otan. |
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.
Looks good! Thank you.
Feel free to have a follow up PR alias SymmetricDifference to SymDifference in the alias map of initGeoBuiltins
!
@@ -66,7 +66,7 @@ func Intersection(a geo.Geometry, b geo.Geometry) (geo.Geometry, error) { | |||
return geo.ParseGeometryFromEWKB(retEWKB) | |||
} | |||
|
|||
// Union returns the geometries of intersection between A and B. | |||
// Union returns the geometries of union between A and B. |
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.
thanks!
bors r+ |
Build succeeded: |
Added ST_SymDifference builtin.
Release note (sql change): Implemented the geometry based builtin
ST_SymDifference
.Release justification: low-risk update to new functionality
Resolves: #49051