Hello! Thank you @pedrogit for this awesome collection of PostGIS enhancements. I have a use case for ST_SplitAgg and am excited to use it.
When I ran the first example for ST_SplitAgg I got this error:
ERROR: column reference "geom" is ambiguous
LINE 10: SELECT DISTINCT ON (ST_AsEWKB(geom)) unnest(ST_SplitAgg(a.g...
I replaced geom with a.geom and that seems to have resolved it. If it's helpful, I'm on Postgres 15.2.
I can do a PR to update the example. I have a few other questions about how ST_SplitAgg works and might keep adding to this thread, if that's OK.
Hello! Thank you @pedrogit for this awesome collection of PostGIS enhancements. I have a use case for
ST_SplitAggand am excited to use it.When I ran the first example for
ST_SplitAggI got this error:I replaced
geomwitha.geomand that seems to have resolved it. If it's helpful, I'm on Postgres 15.2.I can do a PR to update the example. I have a few other questions about how
ST_SplitAggworks and might keep adding to this thread, if that's OK.