tests rectangle grid

This commit is contained in:
abelvm 2016-08-10 14:06:28 -04:00
parent 7c2d160da0
commit b80324c0d1

View File

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