[SCM] PostGIS branch stable-3.5 updated. 3.5.2-9-g2627af713

git at osgeo.org git at osgeo.org
Mon Feb 24 16:29:56 PST 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, stable-3.5 has been updated
       via  2627af713bae2b612f4fe0b988ead9bd9803ccf6 (commit)
      from  d3b7ee4bf55dc89df73198048a1181bb986caeed (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 2627af713bae2b612f4fe0b988ead9bd9803ccf6
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Mon Feb 24 16:29:47 2025 -0800

    Fix index binding for ST_DFullyWithin, closes #5855

diff --git a/NEWS b/NEWS
index d9b690577..6d29f441b 100644
--- a/NEWS
+++ b/NEWS
@@ -8,6 +8,7 @@ PostgreSQL 12-18 required. GEOS 3.8+ required. Proj 6.1+ required.
 
 - #5841, Change approach to interrupt handling to conform to PgSQL 
          recommended practice (Paul Ramsey)
+- #5855, Fix index binding in ST_DFullyWithin (Paul Ramsey)
 - Fix misassignment of result in _lwt_HealEdges (Maxim Korotkov)
 
 
diff --git a/postgis/gserialized_supportfn.c b/postgis/gserialized_supportfn.c
index 339ef6935..9030eeeac 100644
--- a/postgis/gserialized_supportfn.c
+++ b/postgis/gserialized_supportfn.c
@@ -85,7 +85,7 @@ static const int16 GeometryStrategies[] = {
 	[ST_OVERLAPS_IDX]               = RTOverlapStrategyNumber,
 	[ST_COVERS_IDX]                 = RTContainsStrategyNumber,
 	[ST_CROSSES_IDX]                = RTOverlapStrategyNumber,
-	[ST_DFULLYWITHIN_IDX]           = RTContainsStrategyNumber,
+	[ST_DFULLYWITHIN_IDX]           = RTContainedByStrategyNumber,
 	[ST_3DDWITHIN_IDX]              = RTOverlapStrategyNumber,
 	[ST_3DDFULLYWITHIN_IDX]         = RTOverlapStrategyNumber,
 	[ST_LINECROSSINGDIRECTION_IDX]  = RTOverlapStrategyNumber,

-----------------------------------------------------------------------

Summary of changes:
 NEWS                            | 1 +
 postgis/gserialized_supportfn.c | 2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list