rpl000006.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. stop slave;
  2. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  3. reset master;
  4. reset slave;
  5. drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
  6. start slave;
  7. set SQL_LOG_BIN=0,timestamp=200006;
  8. create table t1(t timestamp not null,a char(1));
  9. insert into t1 ( a) values ('F');
  10. select unix_timestamp(t) from t1;
  11. unix_timestamp(t)
  12. 200006
  13. load table t1 from master;
  14. select unix_timestamp(t) from t1;
  15. unix_timestamp(t)
  16. 200006
  17. set SQL_LOG_BIN=1,timestamp=default;
  18. drop table t1;
  19. set SQL_LOG_BIN=0;
  20. CREATE TABLE t1 (
  21. a int not null
  22. ) ENGINE=MyISAM MAX_ROWS=4000 CHECKSUM=1;
  23. INSERT INTO t1 VALUES (1);
  24. load table t1 from master;
  25. check table t1;
  26. Table Op Msg_type Msg_text
  27. test.t1 check status OK
  28. drop table t1;
  29. drop table t1;