summaryrefslogtreecommitdiff
path: root/mysql-test/suite/rpl/r/temporal_row-9560.result
blob: c6a57d43fd05393ba009200e4bf08fbcfb6d3dea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
include/master-slave.inc
[connection master]
select @@mysql56_temporal_format;
@@mysql56_temporal_format
0
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');
select @@mysql56_temporal_format;
@@mysql56_temporal_format
0
select * from t1;
ts	t	dt
2016-02-15 12:50:06.123	12:50:06.123	2016-02-15 12:50:06.123
drop table t1;
include/rpl_end.inc