[postgis-tickets] [SCM] PostGIS branch master updated. 3.2.0alpha1-53-g525ea989a

git at osgeo.org git at osgeo.org
Fri Oct 22 18:57:00 PDT 2021


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "PostGIS".

The branch, master has been updated
       via  525ea989af301a2c27fc1375db6dc4de4b831dc6 (commit)
      from  d1e8418b626ba9e3fa370e5f1ad75aab4e631028 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 525ea989af301a2c27fc1375db6dc4de4b831dc6
Author: Regina Obe <lr at pcorp.us>
Date:   Fri Oct 22 21:56:50 2021 -0400

    Disable use of ST_AsFlatGeobuf in window functions.  Partial fix for #5005

diff --git a/postgis/postgis.sql.in b/postgis/postgis.sql.in
index e7887a21e..21216ae26 100644
--- a/postgis/postgis.sql.in
+++ b/postgis/postgis.sql.in
@@ -5047,6 +5047,9 @@ CREATE AGGREGATE ST_AsFlatGeobuf(anyelement)
 	stype = internal,
 	parallel = safe,
 	finalfunc = pgis_asflatgeobuf_finalfn
+#if POSTGIS_PGSQL_VERSION >= 110
+	,finalfunc_modify = read_write
+#endif
 );
 
 -- Availability: 3.2.0
@@ -5056,6 +5059,9 @@ CREATE AGGREGATE ST_AsFlatGeobuf(anyelement, bool)
 	stype = internal,
 	parallel = safe,
 	finalfunc = pgis_asflatgeobuf_finalfn
+#if POSTGIS_PGSQL_VERSION >= 110
+	,finalfunc_modify = read_write
+#endif
 );
 
 -- Availability: 3.2.0

-----------------------------------------------------------------------

Summary of changes:
 postgis/postgis.sql.in | 6 ++++++
 1 file changed, 6 insertions(+)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list