[SCM] PostGIS branch stable-3.4 updated. 3.4.1-15-gb0943c0ab

git at osgeo.org git at osgeo.org
Wed Dec 20 07:21:17 PST 2023


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, stable-3.4 has been updated
       via  b0943c0abe468c7a6fd07f88e27514aac3440808 (commit)
      from  503c3778e72f54c0de3bf294c08cc9a35b8c4893 (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 b0943c0abe468c7a6fd07f88e27514aac3440808
Author: Regina Obe <lr at pcorp.us>
Date:   Wed Dec 20 03:26:57 2023 -0500

    Fix for postgis raster PG 16 guc
    References #5648 for PostGIS 3.4.2
    patch from Ronan Dunklau

diff --git a/NEWS b/NEWS
index 5e750cdde..caf1708ae 100644
--- a/NEWS
+++ b/NEWS
@@ -13,6 +13,7 @@ To take advantage of all SFCGAL featurs, SFCGAL 1.4.1+ is needed.
  - #5629, Handling EMPTY components in repeated point removal (Paul Ramsey)
  - #5604, Handle distance between collections with empty elements (Paul Ramsey)
  - #5635, Handle NaN points in ST_Split (Regina Obe)
+ - #5648, postgis_raster upgrade fails on PG16 (Ronan Dunklau)
 
 
 * Bug Fixes and Enhancments *
diff --git a/libpgcommon/lwgeom_pg.c b/libpgcommon/lwgeom_pg.c
index 4a5a99d4f..f813f476b 100644
--- a/libpgcommon/lwgeom_pg.c
+++ b/libpgcommon/lwgeom_pg.c
@@ -508,7 +508,7 @@ postgis_guc_find_option(const char *name)
 	 * the name field is first in config_generic.
 	 */
 #if POSTGIS_PGSQL_VERSION >= 160
-	res = (struct config_generic **) find_option((void *) &key, false, true, ERROR);
+	res = (struct config_generic **) find_option((void *) name, false, true, ERROR);
 #else
 	res = (struct config_generic **) bsearch((void *) &key,
 		 (void *) get_guc_variables(),

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

Summary of changes:
 NEWS                    | 1 +
 libpgcommon/lwgeom_pg.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list