[SCM] PostGIS branch master updated. 3.6.0rc2-138-g74d24bc78

git at osgeo.org git at osgeo.org
Thu Oct 16 09:56:24 PDT 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, master has been updated
       via  74d24bc78383f8e021cd6300b5aec1d7278b5487 (commit)
      from  976adccb9b11f9f47da2aafe0e524d3207c08914 (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 74d24bc78383f8e021cd6300b5aec1d7278b5487
Author: Paul Ramsey <pramsey at cleverelephant.ca>
Date:   Thu Oct 16 09:55:50 2025 -0700

    Fix up test for #5938, ST_Relate(geom,geom,pattern)
    failure in certain caching situations with RelateNG prepared geometry

diff --git a/regress/core/tickets.sql b/regress/core/tickets.sql
index cffa4fbf8..0b34a3028 100644
--- a/regress/core/tickets.sql
+++ b/regress/core/tickets.sql
@@ -1628,4 +1628,14 @@ SELECT '#5754' AS Ticket,
     ST_AsText(ST_ForcePolygonCCW('LINESTRING(0 0, 1 1, 2 0, 3 1, 4 0)'::geometry), 1) AS LsCcw,
     ST_AsText(ST_ForcePolygonCW('LINESTRING(0 0, 1 1, 2 0, 3 1, 4 0)'::geometry), 1) AS LsCw,
 	ST_AsText(ST_ForcePolygonCCW('POLYGON((0 0, 0 1, 1 1, 1 0, 0 0))'::geometry), 1) AS PlyCcw1,
-	ST_AsText(ST_ForcePolygonCCW('POLYGON((0 0, 0 10, 10 10, 10 0, 0 0),(1 1, 2 1, 2 2, 1 2, 1 1))'::geometry), 1)  AS PlyCcw2
+	ST_AsText(ST_ForcePolygonCCW('POLYGON((0 0, 0 10, 10 10, 10 0, 0 0),(1 1, 2 1, 2 2, 1 2, 1 1))'::geometry), 1)  AS PlyCcw2;
+
+-- -------------------------------------------------------------------------------------
+-- #5938
+SELECT
+  '#5938',
+  ST_Relate(a.geom, b.geom),
+  ST_Relate(a.geom, b.geom, '1FF00F212')
+FROM
+(VALUES ('LINESTRING (170 290, 205 272)'),('LINESTRING (120 215, 176 197)'),('LINESTRING (170 290, 205 272)')) AS a(geom),
+(VALUES ('POLYGON ((100 200, 140 230, 180 310, 280 310, 390 270, 400 210, 320 140, 215 141, 150 170, 100 200))')) AS b(geom);
diff --git a/regress/core/tickets_expected b/regress/core/tickets_expected
index 98d74a836..fbf04a8c1 100644
--- a/regress/core/tickets_expected
+++ b/regress/core/tickets_expected
@@ -493,3 +493,6 @@ public|test5978|shape|2|4326|POINT
 #5987|LINESTRING(20 20,20.1 20,20.2 19.9)|LINESTRING(20 20,20.1 20,20.2 19.9)
 #5962|MULTIPOINT((1 1),(3 4))|POINT(1 1)
 #5754|LINESTRING(0 0,1 1,2 0,3 1,4 0)|LINESTRING(0 0,1 1,2 0,3 1,4 0)|POLYGON((0 0,1 0,1 1,0 1,0 0))|POLYGON((0 0,10 0,10 10,0 10,0 0),(1 1,1 2,2 2,2 1,1 1))
+#5938|1FF00F212|t
+#5938|1FF00F212|t
+#5938|1FF00F212|t

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

Summary of changes:
 regress/core/tickets.sql      | 12 +++++++++++-
 regress/core/tickets_expected |  3 +++
 2 files changed, 14 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
PostGIS


More information about the postgis-tickets mailing list