tests rectangle grid

This commit is contained in:
abelvm 2016-08-10 14:15:22 -04:00
parent b80324c0d1
commit 592eb68d42

View File

@ -40,7 +40,7 @@ BEGIN
-- grid #0
with c1 as(
SELECT CDB_RectangleGrid(polygon, h::float8, h::float8) as c
SELECT CDB_RectangleGrid(polygon, h, h) as c
)
SELECT array_agg(c) INTO cells FROM c1;