summaryrefslogtreecommitdiff
path: root/mysql-test/t/3.23/rpl000006.test
blob: 8f85b3a795210480861f5ee200efdec3505b7c3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
source t/include/master-slave.inc;
connection master;
set SQL_LOG_BIN=0;
set timestamp=200006;
drop table if exists foo;
create table foo(t timestamp not null,a char(1));
insert into foo ( a) values ('F');
@r/3.23/rpl000006.result select unix_timestamp(t) from foo;
connection slave;
drop table if exists foo;
load table foo from master;
@r/3.23/rpl000006.result select unix_timestamp(t) from foo;