Sha256: 155bf460dba4c0549e64560208f7b85a8f8a35bc473eb1bf6ec9664e8aa1c1ac

Contents?: true

Size: 432 Bytes

Versions: 12

Compression:

Stored size: 432 Bytes

Contents

drop table if exists load;

create table load (
    time timestamptz(6) not null,
    note text
);

insert into load (time, note) values
('2016-11-02 01:00:01+0000', 'first'),
('2016-11-02 02:00:02+0000', 'first'),
('2016-11-02 03:00:03+0000', 'first'),
('2016-11-02 04:00:04+0000', 'first'),
('2016-11-02 04:00:05.111001+0000', 'first'),
('2016-11-02 04:00:05.222002+0000', 'first'),
('2016-11-02 04:00:05.333003+0000', 'first');

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
embulk-input-postgresql-0.10.1 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.10.0 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.9.3 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.9.2 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.9.1 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.9.0 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.8.6 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.8.5 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.8.4 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.8.3 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.8.2 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql
embulk-input-postgresql-0.8.1 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamptz/setup.sql