src/test/resources/org/embulk/input/mysql/test/expect/basic/setup.sql in embulk-input-mysql-0.9.3 vs src/test/resources/org/embulk/input/mysql/test/expect/basic/setup.sql in embulk-input-mysql-0.10.0
- old
+ new
@@ -15,10 +15,11 @@
c11 date,
c12 datetime,
c13 timestamp,
c14 time,
c15 datetime(6),
+ c16 json,
primary key(id)
);
insert into test1 values(
'10',
@@ -34,10 +35,11 @@
null,
null,
null,
'2015-06-04 23:45:06',
null,
+ null,
null
);
insert into test1 values(
'11',
@@ -53,10 +55,11 @@
'xy',
'2015-06-04',
'2015-06-04 12:34:56',
'2015-06-04 23:45:06',
'08:04:02',
- '2015-06-04 01:02:03.123456'
+ '2015-06-04 01:02:03.123456',
+ '{"key":"value"}'
);
drop table if exists test2;
create table test2 (c1 bigint unsigned);
\ No newline at end of file