[SCM] PostGIS branch stable-3.6 updated. 3.6.4-60-g057a15def

git at osgeo.org git at osgeo.org
Mon Jul 6 04:14:33 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.6 has been updated
       via  057a15defab7d9a348efd5ecca6110869b85600d (commit)
       via  88eaf6a6739500b7a5726aeb307ce3ac97cf2e79 (commit)
      from  576aec90e7439210d6cf817bbf4b5f15ca038730 (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 057a15defab7d9a348efd5ecca6110869b85600d
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 433781369..3a478b3bb 100644
--- a/NEWS
+++ b/NEWS
@@ -30,6 +30,8 @@ PostGIS 3.6.5
   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.6.4

commit 88eaf6a6739500b7a5726aeb307ce3ac97cf2e79
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.6

diff --git a/postgis/postgis_module.c b/postgis/postgis_module.c
index ae8a6a907..9d8148d0c 100644
--- a/postgis/postgis_module.c
+++ b/postgis/postgis_module.c
@@ -63,6 +63,10 @@ static void interrupt_geos_callback(void)
 	{
 		GEOS_interruptRequest();
 	}
+	else
+	{
+		GEOS_interruptCancel();
+	}
 }
 
 static void interrupt_liblwgeom_callback(void)
@@ -82,6 +86,10 @@ static void interrupt_liblwgeom_callback(void)
 	{
 		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