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

MySQL数据库

开发平台:

Visual C++

  1. source include/master-slave.inc;
  2. set SQL_LOG_BIN=0;
  3. create table t1 (word char(20) not null, index(word));
  4. load data infile '../../std_data/words.dat' into table t1;
  5. create table t2 (word char(20) not null);
  6. load data infile '../../std_data/words.dat' into table t2;
  7. create table t3 (word char(20) not null primary key);
  8. connection slave;
  9. load table t1 from master;
  10. load table t2 from master;
  11. load table t3 from master;
  12. check table t1;
  13. select count(*) from t2;
  14. select count(*) from t3;
  15. connection master;
  16. set SQL_LOG_BIN=1;
  17. drop table if exists t1,t2,t3;
  18. save_master_pos;
  19. connection slave;
  20. sync_with_master;
  21. create table t1(n int);
  22. drop table t1;
  23. # End of 4.1 tests