[SCM] PostGIS branch stable-3.4 updated. 3.4.4-43-g6e45a5a64
git at osgeo.org
git at osgeo.org
Fri Jul 25 02:37:09 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.4 has been updated
via 6e45a5a64547a5c6cae9195c2107a24429005fa2 (commit)
from cebf7f6b08d0c25789060c21f3899c349efdd8e1 (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 6e45a5a64547a5c6cae9195c2107a24429005fa2
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
References #5954 in 3.4 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