2000-12-07 15:54:59 +01:00
|
|
|
source include/master-slave.inc;
|
2000-11-18 07:35:40 +01:00
|
|
|
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');
|
2000-12-07 15:54:59 +01:00
|
|
|
@r/rpl000006.result select unix_timestamp(t) from foo;
|
2000-11-18 07:35:40 +01:00
|
|
|
connection slave;
|
|
|
|
drop table if exists foo;
|
|
|
|
load table foo from master;
|
2000-12-07 15:54:59 +01:00
|
|
|
@r/rpl000006.result select unix_timestamp(t) from foo;
|
2001-01-03 01:15:48 +01:00
|
|
|
connection master;
|
|
|
|
drop table foo;
|