Hi
I am afraid, so this functionality is supported only in unreleased
PostgreSQL 9.5
postgres=# SELECT ARRAY(SELECT ARRAY[true::text,false::text] FROM
generate_series(1,2));
┌─┐
│array│
╞═╡
│ {{true,false},{true,false
Hello,
I'm trying to dynamically construct a multi dimensional array where the
outer most array's elements are binary arrays. My initial attempt was
something to the effect of:
SELECT ARRAY(SELECT ARRAY[true::text,false::text] FROM
generate_series(1,2));
My expectation is a result of the form: {{