2002-10-25 01:46:14 +02:00
|
|
|
stop slave;
|
2002-08-08 02:12:02 +02:00
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
2001-09-28 07:05:54 +02:00
|
|
|
reset master;
|
|
|
|
reset slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
2002-10-25 01:46:14 +02:00
|
|
|
start slave;
|
2001-09-28 07:05:54 +02:00
|
|
|
set SQL_LOG_BIN=0,timestamp=200006;
|
|
|
|
create table t1(t timestamp not null,a char(1));
|
|
|
|
insert into t1 ( a) values ('F');
|
|
|
|
select unix_timestamp(t) from t1;
|
2000-12-27 02:31:06 +01:00
|
|
|
unix_timestamp(t)
|
|
|
|
200006
|
2001-09-28 07:05:54 +02:00
|
|
|
load table t1 from master;
|
|
|
|
select unix_timestamp(t) from t1;
|
2001-03-25 00:02:26 +01:00
|
|
|
unix_timestamp(t)
|
|
|
|
200006
|
2001-09-28 07:05:54 +02:00
|
|
|
set SQL_LOG_BIN=1,timestamp=default;
|
|
|
|
drop table t1;
|
|
|
|
set SQL_LOG_BIN=0;
|
|
|
|
CREATE TABLE t1 (
|
|
|
|
a int not null
|
2003-12-10 05:31:42 +01:00
|
|
|
) ENGINE=MyISAM MAX_ROWS=4000 CHECKSUM=1;
|
2001-09-28 07:05:54 +02:00
|
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
load table t1 from master;
|
|
|
|
check table t1;
|
2001-09-18 03:58:15 +02:00
|
|
|
Table Op Msg_type Msg_text
|
|
|
|
test.t1 check status OK
|
2001-09-28 07:05:54 +02:00
|
|
|
drop table t1;
|
|
|
|
drop table t1;
|