geo/geomfn: implement ST_SymmetricDifference#53688
geo/geomfn: implement ST_SymmetricDifference#53688craig[bot] merged 1 commit intocockroachdb:masterfrom
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. |
| ST_Intersection(a.geom, b.geom) = ST_Intersection(a.geom::string, b.geom::string), | ||
| ST_AsEWKT(ST_SymDifference(a.geom, b.geom)) | ||
| ST_AsEWKT(ST_SymDifference(a.geom, b.geom)), | ||
| ST_AsEWKT(ST_SymmetricDifference(a.geom, b.geom)) |
There was a problem hiding this comment.
thanks! quick comment -- can you move both these symdifference statements to a separate select?
Added ST_SymmetricDifference builtin. ST_SymmetricDifference is simply an alias for ST_SymDifference. Release justification: low-risk update to new functionality Release note (sql change): Implemented the geometry based builtin . Resolves: cockroachdb#49052
f5da2d4 to
efd0bea
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. |
|
bors r+ thanks! |
|
This PR was included in a batch that was canceled, it will be automatically retried |
|
Build succeeded: |
Added ST_SymmetricDifference builtin.
ST_SymmetricDifference is simply an alias for ST_SymDifference.
Release justification: low-risk update to new functionality
Release note (sql change): Implemented the geometry based builtin
ST_SymmetricDifference.Resolves: #49052