]> granicus.if.org Git - postgis/commitdiff
PG11: Force order in failing test
authorRaúl Marín Rodríguez <rmrodriguez@carto.com>
Fri, 9 Mar 2018 15:37:02 +0000 (15:37 +0000)
committerRaúl Marín Rodríguez <rmrodriguez@carto.com>
Fri, 9 Mar 2018 15:37:02 +0000 (15:37 +0000)
Closes #4033
Closes #https://github.com/postgis/postgis/pull/229

git-svn-id: http://svn.osgeo.org/postgis/trunk@16453 b70326c6-7e19-0410-871a-916f4a2858ee

regress/tickets.sql

index 231d2a7091111bfbae038d02228d9e46b9e09869..974620f14deb11a41bf76c3692a2b014fdb2158c 100644 (file)
@@ -1033,11 +1033,11 @@ WITH RECURSIVE path (id, g) AS (
     WHERE ST_Y(path.g) = ST_X(rec.g)
 )
 SELECT '#1014c', id, st_astext(g) FROM path;
-SELECT '#1014d', ST_AsEWKT(g) FROM (
+SELECT '#1014d', ST_AsEWKT(g) as t FROM (
        SELECT 'SRID=1;POINT(0 1)'::geometry AS g
        UNION
        SELECT 'SRID=2;POINT(0 1)'::geometry AS g
-) a;
+) a ORDER BY t;
 DROP TABLE IF EXISTS rec;
 
 -- #3930