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

MySQL数据库

开发平台:

Visual C++

  1. source include/master-slave.inc;
  2. # Test replication of auto_increment
  3. create table t1 (n int auto_increment primary key);
  4. set insert_id = 2000;
  5. insert into t1 values (NULL),(NULL),(NULL);
  6. sync_slave_with_master;
  7. select * from t1;
  8. connection master;
  9. --replace_result $SLAVE_MYPORT 9999
  10. show slave hosts;
  11. drop table t1;
  12. sync_slave_with_master;
  13. stop slave;
  14. connection master;
  15. # Test replication of timestamp
  16. create table t2(id int auto_increment primary key, created datetime);
  17. set timestamp=12345;
  18. insert into t2 set created=now();
  19. select * from t2;
  20. # Test replication of CREATE .. LIKE (Bug #2557)
  21. create table t3 like t2;
  22. create temporary table t4 like t2;
  23. create table t5 select * from t4;
  24. save_master_pos;
  25. connection slave;
  26. start slave;
  27. sync_with_master;
  28. select * from t2;
  29. show create table t3;
  30. show create table t5;
  31. connection master;
  32. drop table t2,t3,t5;
  33. sync_slave_with_master;
  34. # End of 4.1 tests