Return test results in deterministic order (closes #96)

This commit is contained in:
Paul Ramsey
2015-07-07 06:13:02 -07:00
parent 08cdb38730
commit 011a007f04
2 changed files with 4 additions and 4 deletions

View File

@@ -5,5 +5,5 @@ inp AS ( select z0.z, r1.r as x, r2.r as y FROM zoom z0, range r1, range r2 WHER
ext AS ( select x,y,z,CDB_XYZ_Extent(x,y,z) as g from inp )
select X::text || ',' || Y::text || ',' || Z::text as xyz,
st_xmin(g), st_xmax(g), st_ymin(g), st_ymax(g)
from ext;
from ext order by xyz;