summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/rpl/t/temporal_row-9560.test
blob: 00fb59bc08824d914efe2dc5427b21c45f23e92c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#
# MDEV-9560 Mariadb 10.1 Crashes when replicating from 10.0
#
source include/have_binlog_format_row.inc;
source include/master-slave.inc;

select @@mysql56_temporal_format;
create table t1 (ts timestamp(3), t time(3), dt datetime(3));
insert into t1 values ('2016-02-15 12:50:06.123', '12:50:06.123', '2016-02-15 12:50:06.123');

sync_slave_with_master;

select @@mysql56_temporal_format;
select * from t1;

connection master;
drop table t1;

source include/rpl_end.inc;