[SCM] PostGIS branch stable-3.5 updated. 3.5.3-41-g30a45040a
git at osgeo.org
git at osgeo.org
Fri Jul 25 02:33:19 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.5 has been updated
via 30a45040a71a57d972c7be70365462374010c2f0 (commit)
from 601c938933766f1cd1162d27a9585e71bc45abec (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 30a45040a71a57d972c7be70365462374010c2f0
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.5 branch
diff --git a/topology/test/regress/getfacebypoint.sql b/topology/test/regress/getfacebypoint.sql
index b001a9afa..e1af31dda 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