[SCM] PostGIS branch stable-3.5 updated. 3.5.7-57-g3566cd10d
git at osgeo.org
git at osgeo.org
Mon Jul 6 04:14:31 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.5 has been updated
via 3566cd10d386f1e3364f48314fa0b6cf83168afd (commit)
via 06e297d200872fbaf7e44317e4012eac5161be3c (commit)
from aadeecfb513034ce713c51285286d6989096b3d2 (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 3566cd10d386f1e3364f48314fa0b6cf83168afd
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 727115c49..49f3f2625 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,8 @@ PostGIS 3.5.8
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.5.7
2026/06/10
commit 06e297d200872fbaf7e44317e4012eac5161be3c
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.5
diff --git a/postgis/postgis_module.c b/postgis/postgis_module.c
index 74b9aa725..74bbd940f 100644
--- a/postgis/postgis_module.c
+++ b/postgis/postgis_module.c
@@ -63,6 +63,10 @@ static void interrupt_geos_callback()
{
GEOS_interruptRequest();
}
+ else
+ {
+ GEOS_interruptCancel();
+ }
}
static void interrupt_liblwgeom_callback()
@@ -82,6 +86,10 @@ static void interrupt_liblwgeom_callback()
{
lwgeom_request_interrupt();
}
+ else
+ {
+ lwgeom_cancel_interrupt();
+ }
}
/*
@@ -133,4 +141,3 @@ _PG_fini(void)
elog(NOTICE, "Goodbye from PostGIS %s", POSTGIS_VERSION);
}
-
-----------------------------------------------------------------------
Summary of changes:
NEWS | 2 ++
postgis/postgis_module.c | 9 ++++++++-
2 files changed, 10 insertions(+), 1 deletion(-)
hooks/post-receive
--
PostGIS
More information about the postgis-tickets
mailing list