[SCM] PostGIS branch master updated. 3.4.0rc1-732-g72596e155
git at osgeo.org
git at osgeo.org
Tue Oct 31 11:19:54 PDT 2023
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 72596e155bfceaa7c48a681468599ff43f898900 (commit)
from 72e683a7c911e78eb4221bd677149c92438c79d0 (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 72596e155bfceaa7c48a681468599ff43f898900
Author: Sandro Santilli <strk at kbt.io>
Date: Tue Oct 31 19:11:03 2023 +0100
Fix regress test broken with "give more detail" commit ac2822563
diff --git a/regress/core/regress.sql b/regress/core/regress.sql
index 3ea0fc15e..f132830a7 100644
--- a/regress/core/regress.sql
+++ b/regress/core/regress.sql
@@ -343,12 +343,12 @@ ORDER BY 2;
-- same role as postgis_lib_version
SELECT DISTINCT
'unexpected ownership: ' || oid::regprocedure ||
- ' is owned by ' || proowner::regrole
+ ' is owned by ' || proowner::regrole ||
' instead of ' || (
SELECT proowner::regrole FROM pg_proc
WHERE proname = 'postgis_lib_version'
- FROM pg_proc
)
+ FROM pg_proc
WHERE (
probin like '%postgis%'
OR (
@@ -363,7 +363,7 @@ AND proowner !=
proowner
FROM pg_proc WHERE proname = 'postgis_lib_version'
)
-ORDER BY 2;
+ORDER BY 1;
-- Make sure all postgis functions are SECURITY INVOKER
SELECT DISTINCT 'unexpected security definer', oid::regprocedure, prosecdef
-----------------------------------------------------------------------
Summary of changes:
regress/core/regress.sql | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list