mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
12 lines
386 B
Text
12 lines
386 B
Text
source 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/rpl000006.result select unix_timestamp(t) from foo;
|
|
connection slave;
|
|
drop table if exists foo;
|
|
load table foo from master;
|
|
@r/rpl000006.result select unix_timestamp(t) from foo;
|