[SCM] PostGIS branch stable-3.2 updated. 3.2.7-49-ga7d3da5a9

git at osgeo.org git at osgeo.org
Fri Jul 25 02:37:54 PDT 2025


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.2 has been updated
       via  a7d3da5a9baceef3458b7a8c0502d5368295f055 (commit)
      from  8c4c2abfb225f16fecfcc8d6e7749945a257aeac (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 a7d3da5a9baceef3458b7a8c0502d5368295f055
Author: Sandro Santilli <strk at kbt.io>
Date:   Fri Jul 25 11:27:28 2025 +0200

    Fix regexp and make it standard_confirming_strings agnostic
    
    Closes #5954 in 3.2 branch

diff --git a/topology/test/regress/getfacebypoint.sql b/topology/test/regress/getfacebypoint.sql
index fc47b0b63..2f805af38 100644
--- a/topology/test/regress/getfacebypoint.sql
+++ b/topology/test/regress/getfacebypoint.sql
@@ -69,7 +69,7 @@ BEGIN
   EXCEPTION
   WHEN OTHERS THEN
     -- Strip details, we only want the first part
-    RAISE EXCEPTION '%', regexp_replace(SQLERRM, '([^:]): .*', '\1 (see #5946)');
+    RAISE EXCEPTION '%', regexp_replace(SQLERRM, E'([^:]*): .*', E'\\1 (see #5946)');
   END;
 END;
 $$ LANGUAGE 'plpgsql';

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

Summary of changes:
 topology/test/regress/getfacebypoint.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list