Sha256: c560b6c643d752d2ed71c4d6116265225230f8b42cd152243fdcaba6088f4679

Contents?: true

Size: 408 Bytes

Versions: 2

Compression:

Stored size: 408 Bytes

Contents

drop table if exists input_array;

create table input_array (
    c1 integer[],
    c2 text[][],
    c3 bool[][][]
);

insert into input_array (c1, c2, c3) values ('{1000, 2000, 3000, 4000}', '{{"red", "green"}, {"blue", "cyan"}}', '{{{true}}}');

insert into input_array (c1, c2, c3) values ('{5000, 6000, 7000, 8000}', '{{"yellow", "magenta"}, {"purple", "light,dark"}}', '{{{t,t},{f,f}},{{t,f},{f,t}}}');

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
embulk-input-postgresql-0.9.0 src/test/resources/org/embulk/input/postgresql/test/expect/array/setup.sql
embulk-input-postgresql-0.8.6 src/test/resources/org/embulk/input/postgresql/test/expect/array/setup.sql