3122a0479d
All test results are based off of existing behavior, which doesn't always make sense (ref #247)
12 lines
425 B
SQL
12 lines
425 B
SQL
WITH data AS (
|
|
SELECT array_agg(x::numeric) s FROM generate_series(1,100) x
|
|
WHERE x % 5 != 0 AND x % 7 != 0
|
|
)
|
|
SELECT round(unnest(CDB_HeadsTailsBins(s, 7)),2) FROM data;
|
|
|
|
WITH data_nulls AS (
|
|
SELECT array_agg(CASE WHEN x % 2 != 0 THEN x ELSE NULL END::numeric) s FROM generate_series(1,100) x
|
|
WHERE x % 5 != 0 AND x % 7 != 0
|
|
)
|
|
SELECT round(unnest(CDB_HeadsTailsBins(s, 7)),2) FROM data_nulls;
|