2002-10-24 17:46:14 -06:00
|
|
|
stop slave;
|
2002-08-08 03:12:02 +03:00
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
2001-09-27 23:05:54 -06:00
|
|
|
reset master;
|
|
|
|
reset slave;
|
|
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
2002-10-24 17:46:14 -06:00
|
|
|
start slave;
|
2001-09-27 23:05:54 -06: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 03:31:06 +02:00
|
|
|
unix_timestamp(t)
|
|
|
|
200006
|
2001-09-27 23:05:54 -06:00
|
|
|
load table t1 from master;
|
|
|
|
select unix_timestamp(t) from t1;
|
2001-03-25 01:02:26 +02:00
|
|
|
unix_timestamp(t)
|
|
|
|
200006
|
2001-09-27 23:05:54 -06: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 04:31:42 +00:00
|
|
|
) ENGINE=MyISAM MAX_ROWS=4000 CHECKSUM=1;
|
2001-09-27 23:05:54 -06:00
|
|
|
INSERT INTO t1 VALUES (1);
|
|
|
|
load table t1 from master;
|
|
|
|
check table t1;
|
2001-09-18 04:58:15 +03:00
|
|
|
Table Op Msg_type Msg_text
|
|
|
|
test.t1 check status OK
|
2001-09-27 23:05:54 -06:00
|
|
|
drop table t1;
|
|
|
|
drop table t1;
|