fixed precision in tests

This commit is contained in:
Andy Eschbacher
2015-05-14 15:45:57 -04:00
parent 16d0dc739a
commit ee1df92561
2 changed files with 7 additions and 7 deletions

View File

@@ -2,4 +2,4 @@ WITH data AS (
SELECT array_agg(x) s FROM generate_series(1,300) x
WHERE x % 5 != 0 AND x % 7 != 0
)
SELECT unnest(CDB_EqualIntervalBins(s, 7)) FROM data
SELECT round(unnest(CDB_EqualIntervalBins(s, 7)),7) FROM data