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

MySQL数据库

开发平台:

Visual C++

  1. source include/master-slave.inc;
  2. #
  3. # Bug#7100 relay_log_space_max missing from SHOW VARIABLES
  4. #
  5. SHOW VARIABLES LIKE 'relay_log_space_limit';
  6. CREATE TABLE t1 (name varchar(64), age smallint(3));
  7. INSERT INTO  t1 SET name='Andy', age=31;
  8. INSERT t1 SET name='Jacob', age=2;
  9. INSERT into t1 SET name='Caleb', age=1;
  10. ALTER TABLE t1 ADD id int(8) ZEROFILL AUTO_INCREMENT PRIMARY KEY;
  11. select * from t1;
  12. save_master_pos;
  13. connection slave;
  14. sync_with_master;
  15. select * from t1;
  16. connection master;
  17. drop table t1;
  18. save_master_pos;
  19. connection slave;
  20. sync_with_master;
  21. # End of 4.1 tests