[SCM] PostGIS branch master updated. 3.5.0-415-g27b7d472d
git at osgeo.org
git at osgeo.org
Wed Jul 2 09:57:02 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 27b7d472d66a37613ddeb5409e9fa380c7406f27 (commit)
from c09a853ab3ef303eb06509d4760d99b36498fccc (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 27b7d472d66a37613ddeb5409e9fa380c7406f27
Author: Sandro Santilli <strk at kbt.io>
Date: Wed Jul 2 18:56:42 2025 +0200
Encode version of deprecation of long transaction support functions
diff --git a/postgis/postgis_after_upgrade.sql b/postgis/postgis_after_upgrade.sql
index eef122d39..0e6f507d2 100644
--- a/postgis/postgis_after_upgrade.sql
+++ b/postgis/postgis_after_upgrade.sql
@@ -243,19 +243,19 @@ SELECT _postgis_drop_function_by_signature('pgis_geometry_union_finalfn(internal
-- Long Xact support dropped in 3.5.0
-- See https://trac.osgeo.org/postgis/ticket/5723
-SELECT _postgis_drop_function_by_signature('UnlockRows(text)');
-SELECT _postgis_drop_function_by_signature('LockRow(text, text, text, text, timestamp)');
-SELECT _postgis_drop_function_by_signature('LockRow(text, text, text, text)');
-SELECT _postgis_drop_function_by_signature('LockRow(text, text, text)');
-SELECT _postgis_drop_function_by_signature('LockRow(text, text, text, timestamp)');
-SELECT _postgis_drop_function_by_signature('AddAuth(text)');
-SELECT _postgis_drop_function_by_signature('CheckAuth(text, text, text)');
-SELECT _postgis_drop_function_by_signature('CheckAuth(text, text)');
-SELECT _postgis_drop_function_by_signature('CheckAuthTrigger()');
-SELECT _postgis_drop_function_by_signature('GetTransactionID()');
-SELECT _postgis_drop_function_by_signature('EnableLongTransactions()');
-SELECT _postgis_drop_function_by_signature('LongTransactionsEnabled()');
-SELECT _postgis_drop_function_by_signature('DisableLongTransactions()');
+SELECT _postgis_drop_function_by_signature('UnlockRows(text)', '3.5.0');
+SELECT _postgis_drop_function_by_signature('LockRow(text, text, text, text, timestamp)', '3.5.0');
+SELECT _postgis_drop_function_by_signature('LockRow(text, text, text, text)', '3.5.0');
+SELECT _postgis_drop_function_by_signature('LockRow(text, text, text)', '3.5.0');
+SELECT _postgis_drop_function_by_signature('LockRow(text, text, text, timestamp)', '3.5.0');
+SELECT _postgis_drop_function_by_signature('AddAuth(text)', '3.5.0');
+SELECT _postgis_drop_function_by_signature('CheckAuth(text, text, text)', '3.5.0');
+SELECT _postgis_drop_function_by_signature('CheckAuth(text, text)', '3.5.0');
+SELECT _postgis_drop_function_by_signature('CheckAuthTrigger()', '3.5.0');
+SELECT _postgis_drop_function_by_signature('GetTransactionID()', '3.5.0');
+SELECT _postgis_drop_function_by_signature('EnableLongTransactions()', '3.5.0');
+SELECT _postgis_drop_function_by_signature('LongTransactionsEnabled()', '3.5.0');
+SELECT _postgis_drop_function_by_signature('DisableLongTransactions()', '3.5.0');
-- #4394
-----------------------------------------------------------------------
Summary of changes:
postgis/postgis_after_upgrade.sql | 26 +++++++++++++-------------
1 file changed, 13 insertions(+), 13 deletions(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list