[SCM] PostGIS branch master updated. 3.4.0rc1-1098-g5ab778aef
git at osgeo.org
git at osgeo.org
Mon Apr 29 08:16:05 PDT 2024
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 5ab778aef57b4373385f45bc5104e56a9fab8240 (commit)
from 5b955d5aa62c2419d822cb6653a6e384c94bb773 (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 5ab778aef57b4373385f45bc5104e56a9fab8240
Author: Sandro Santilli <strk at kbt.io>
Date: Mon Apr 29 17:15:41 2024 +0200
Drop xact support functions on upgrade
Closes #5723
diff --git a/postgis/postgis_after_upgrade.sql b/postgis/postgis_after_upgrade.sql
index 7469567eb..cafcf3cf4 100644
--- a/postgis/postgis_after_upgrade.sql
+++ b/postgis/postgis_after_upgrade.sql
@@ -240,6 +240,23 @@ SELECT _postgis_drop_function_by_signature('st_distance_sphere(geometry, geometr
SELECT _postgis_drop_function_by_signature('pgis_geometry_union_transfn(internal, geometry)');
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()');
+
+
-- #4394
update pg_operator set oprcanhash = true, oprcanmerge = true where oprname = '=' and oprcode = 'geometry_eq'::regproc;
-----------------------------------------------------------------------
Summary of changes:
postgis/postgis_after_upgrade.sql | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list