[SCM] PostGIS branch stable-3.4 updated. 3.4.6-69-gfc7bbf254
git at osgeo.org
git at osgeo.org
Mon Jul 6 04:14:29 PDT 2026
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, stable-3.4 has been updated
via fc7bbf254d3ab41ee18f5655b0736326b4afabb7 (commit)
via 0fd4edaa09a99f7da70cda68c0a3128129cf3f9a (commit)
from dba1fd7f05d2213b55d2ef68ee7ca0797640cc89 (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 fc7bbf254d3ab41ee18f5655b0736326b4afabb7
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Mon Jul 6 15:06:59 2026 +0400
NEWS: add entry for GH-1146
References https://github.com/postgis/postgis/pull/1146
diff --git a/NEWS b/NEWS
index b18a92ea7..1f7a18ff1 100644
--- a/NEWS
+++ b/NEWS
@@ -32,6 +32,8 @@ PostGIS 3.4.7
regressions (Darafei Praliaskouski)
- GH-898, Fix ST_DFullyWithin indexed plans and large-coordinate
ring-orientation precision regressions (Darafei Praliaskouski)
+ - GH-1146, Reset interrupt callbacks when PostgreSQL clears
+ cancellation state (Darafei Praliaskouski)
PostGIS 3.4.6
commit 0fd4edaa09a99f7da70cda68c0a3128129cf3f9a
Author: Darafei Praliaskouski <me at komzpa.net>
Date: Mon Jul 6 15:06:28 2026 +0400
postgis: reset interrupt callbacks when clear
Backpatches commit 12afc1d465c14008848ededffe76aac533e50bc4.
Closes https://github.com/postgis/postgis/pull/1146 for PostGIS 3.4
diff --git a/postgis/postgis_module.c b/postgis/postgis_module.c
index a8b31c52b..56441e79d 100644
--- a/postgis/postgis_module.c
+++ b/postgis/postgis_module.c
@@ -59,6 +59,8 @@ static void interrupt_geos_callback()
*/
if (QueryCancelPending || ProcDiePending)
GEOS_interruptRequest();
+ else
+ GEOS_interruptCancel();
}
static void interrupt_liblwgeom_callback()
@@ -74,6 +76,8 @@ static void interrupt_liblwgeom_callback()
*/
if (QueryCancelPending || ProcDiePending)
lwgeom_request_interrupt();
+ else
+ lwgeom_cancel_interrupt();
}
/*
@@ -128,4 +132,3 @@ _PG_fini(void)
}
-
-----------------------------------------------------------------------
Summary of changes:
NEWS | 2 ++
postgis/postgis_module.c | 5 ++++-
2 files changed, 6 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list