[SCM] PostGIS branch master updated. 3.6.0beta1-9-g18cfba216
git at osgeo.org
git at osgeo.org
Fri Jul 25 02:31:07 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, master has been updated
via 18cfba216da44cabc6a4d661887b4ec90bd6c92b (commit)
from 5e303c53897bea5dce445bbb1bda0d206e63649a (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 18cfba216da44cabc6a4d661887b4ec90bd6c92b
Author: Sandro Santilli <strk at kbt.io>
Date: Fri Jul 25 11:27:28 2025 +0200
Fix regexp
References #5954 in master branch (3.6.0dev)
diff --git a/topology/test/regress/getfacebypoint.sql b/topology/test/regress/getfacebypoint.sql
index d2473a654..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, E'([^:]): .*', E'\\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