Sha256: 2542d1df71c54f2cf289b38fbc601e0b8f10a7f058973c1443425d77a4513c64

Contents?: true

Size: 410 Bytes

Versions: 12

Compression:

Stored size: 410 Bytes

Contents

drop table if exists load;

create table load (
    time timestamp without time zone not null,
    note text
);

insert into load (time, note) values
('2016-11-02 01:00:01', 'first'),
('2016-11-02 02:00:02', 'first'),
('2016-11-02 03:00:03', 'first'),
('2016-11-02 04:00:04', 'first'),
('2016-11-02 04:00:05.111001', 'first'),
('2016-11-02 04:00:05.222002', 'first'),
('2016-11-02 04:00:05.333003', '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/timestamp/setup.sql
embulk-input-postgresql-0.10.0 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.9.3 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.9.2 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.9.1 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.9.0 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.8.6 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.8.5 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.8.4 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.8.3 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.8.2 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql
embulk-input-postgresql-0.8.1 src/test/resources/org/embulk/input/postgresql/test/expect/incremental/timestamp/setup.sql