[SCM] PostGIS branch master updated. 3.4.0rc1-1004-gf49fa42f0

git at osgeo.org git at osgeo.org
Sun Mar 10 18:08:54 PDT 2024


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  f49fa42f059fb01c603125e2fdfceb1eec61fc05 (commit)
      from  d0193e2bbd67f725d27e6bab7123bac71dfd576f (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 f49fa42f059fb01c603125e2fdfceb1eec61fc05
Author: Regina Obe <lr at pcorp.us>
Date:   Sun Mar 10 21:08:30 2024 -0400

    Fix boolean casing
    Closes #5687 for PostGIS 3.5.0

diff --git a/libpgcommon/lwgeom_pg.c b/libpgcommon/lwgeom_pg.c
index 331f8cb78..ba4d80e11 100644
--- a/libpgcommon/lwgeom_pg.c
+++ b/libpgcommon/lwgeom_pg.c
@@ -113,7 +113,7 @@ postgis_get_full_version_schema()
 	}
 
 	/* Execute the query, noting the readonly status of this SQL */
-	spi_result = SPI_execute(query, TRUE, 0);
+	spi_result = SPI_execute(query, true, 0);
 
 	if (spi_result != SPI_OK_SELECT || SPI_tuptable == NULL){
 		elog(ERROR, "%s: error executing query %d", __func__, spi_result);

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

Summary of changes:
 libpgcommon/lwgeom_pg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list