Sha256: b0c71dc7e4971774de54de3839c30add66949ba11571dadeba5cdeab41ffa062

Contents?: true

Size: 613 Bytes

Versions: 3

Compression:

Stored size: 613 Bytes

Contents

drop table if exists input_array;

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

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

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

insert into input_array (c1, c2, c3, c4) values ('{1000}', '{{"\"", "{\\}", "{a,b}"}}', '{true}', '{12345678901234567890.1234567890}');

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
embulk-input-postgresql-0.9.3 src/test/resources/org/embulk/input/postgresql/test/expect/array/setup.sql
embulk-input-postgresql-0.9.2 src/test/resources/org/embulk/input/postgresql/test/expect/array/setup.sql
embulk-input-postgresql-0.9.1 src/test/resources/org/embulk/input/postgresql/test/expect/array/setup.sql