[SCM] PostGIS branch master updated. 3.6.0beta1-5-gc65dc2b4c

git at osgeo.org git at osgeo.org
Thu Jul 24 03:18:48 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  c65dc2b4c09b4864a6181b061f3a0e32a1787973 (commit)
      from  1458a794d4c2e8347b8f7b3ab3a650cfc57ac43f (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 c65dc2b4c09b4864a6181b061f3a0e32a1787973
Author: Sandro Santilli <strk at kbt.io>
Date:   Thu Jul 24 12:18:09 2025 +0200

    Reduce WARNINGs when cleaning deprecated functions

diff --git a/postgis/common_before_upgrade.sql b/postgis/common_before_upgrade.sql
index 6258a3ddb..222b5f1f5 100644
--- a/postgis/common_before_upgrade.sql
+++ b/postgis/common_before_upgrade.sql
@@ -147,7 +147,7 @@ BEGIN
 		INTO STRICT proc;
 
 	EXCEPTION
-	WHEN NO_DATA_FOUND THEN
+	WHEN NO_DATA_FOUND OR UNDEFINED_FUNCTION OR UNDEFINED_OBJECT THEN
 		RAISE DEBUG 'Deprecated function % does not exist', function_signature;
 		RETURN;
 	WHEN others THEN

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

Summary of changes:
 postgis/common_before_upgrade.sql | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list