Sha256: 9f2fb5df1d063d7416dfa7fdecfbe626dcf239a7025cc9b8722359772aae5a4f

Contents?: true

Size: 519 Bytes

Versions: 2

Compression:

Stored size: 519 Bytes

Contents

drop table if exists test1;

create table test1 (
    id   int not null,
    name varchar(8) not null,
    primary key(id)
);

insert into test1 values
(1, 'A'),
(2, 'B'),
(3, 'C'),
(4, 'D');

drop table if exists test2;

drop table if exists test3;

create table test3 (
    id         int not null,
    datetime1  datetime,
    datetime2  datetime,
    primary key(id)
);

insert into test3 values
(1, NULL, NULL),
(2, '2019-01-02 12:34:56', '2019-01-02 12:34:56'),
(3, '2018-12-31 23:59:59', '2018-12-31 23:59:59');

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
embulk-input-mysql-0.10.1 src/test/resources/org/embulk/input/mysql/test/expect/option/setup.sql
embulk-input-mysql-0.10.0 src/test/resources/org/embulk/input/mysql/test/expect/option/setup.sql