Changeset: 4edb9030f7dc for MonetDB
URL: https://dev.monetdb.org/hg/MonetDB/rev/4edb9030f7dc
Modified Files:
        geom/sql/functions/Tests/ST_IntersectsRTree.test
Branch: default
Log Message:

Fixes row ordering in ST_IntersectsRTree


diffs (69 lines):

diff --git a/geom/sql/functions/Tests/ST_IntersectsRTree.test 
b/geom/sql/functions/Tests/ST_IntersectsRTree.test
--- a/geom/sql/functions/Tests/ST_IntersectsRTree.test
+++ b/geom/sql/functions/Tests/ST_IntersectsRTree.test
@@ -10,8 +10,8 @@ WHERE
     ST_INTERSECTS 
     [geom]
 ----
+POLYGON ((10 10, 20 10, 10 20, 10 10))
 POLYGON ((10 10, 20 10, 20 20, 10 20, 10 10))
-POLYGON ((10 10, 20 10, 10 20, 10 10))
 
 query T rowsort
 SELECT
@@ -22,8 +22,8 @@ WHERE
     ST_INTERSECTS 
     [geom]
 ----
+POLYGON ((10 10, 20 10, 10 20, 10 10))
 POLYGON ((10 10, 20 10, 20 20, 10 20, 10 10))
-POLYGON ((10 10, 20 10, 10 20, 10 10))
 
 query T rowsort
 SELECT
@@ -34,10 +34,10 @@ WHERE
     ST_INTERSECTS 
     [geom]
 ----
-POLYGON ((10 10, 20 10, 20 20, 10 20, 10 10))
+POLYGON ((0 20, 10 20, 20 20, 20 10, 0 20))
 POLYGON ((10 10, 20 10, 10 20, 10 10))
+POLYGON ((10 10, 20 10, 20 20, 10 20, 10 10))
 POLYGON ((10 20, 20 10, 20 20, 10 20))
-POLYGON ((0 20, 10 20, 20 20, 20 10, 0 20))
 
 query T rowsort
 SELECT
@@ -48,9 +48,9 @@ WHERE
     ST_INTERSECTS 
     [geom]
 ----
+POLYGON ((0 20, 10 20, 20 20, 20 10, 0 20))
 POLYGON ((10 10, 20 10, 20 20, 10 20, 10 10))
 POLYGON ((10 20, 20 10, 20 20, 10 20))
-POLYGON ((0 20, 10 20, 20 20, 20 10, 0 20))
 
 query T rowsort
 SELECT
@@ -73,8 +73,10 @@ WHERE
     ST_INTERSECTS 
     [geom]
 ----
+POLYGON ((0 20, 10 20, 20 20, 20 10, 0 20))
+POLYGON ((10 10, 20 10, 10 20, 10 10))
 POLYGON ((10 10, 20 10, 20 20, 10 20, 10 10))
-POLYGON ((10 10, 20 10, 10 20, 10 10))    
+POLYGON ((10 20, 20 10, 20 20, 10 20))
 
 query T rowsort
 SELECT
@@ -85,7 +87,7 @@ WHERE
     ST_INTERSECTS
     [geom]
 ----
-POLYGON ((10 10, 20 10, 20 20, 10 20, 10 10))
+POLYGON ((0 20, 10 20, 20 20, 20 10, 0 20))
 POLYGON ((10 10, 20 10, 10 20, 10 10))
-POLYGON ((0 20, 10 20, 20 20, 20 10, 0 20))
+POLYGON ((10 10, 20 10, 20 20, 10 20, 10 10))
 
_______________________________________________
checkin-list mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to