rpl000005.test
Upload User: tsgydb
Upload Date: 2007-04-14
Package Size: 10674k
Code Size: 1k
Category:

MySQL

Development Platform:

Visual C++

  1. source include/master-slave.inc;
  2. connection master;
  3. drop table if exists t1;
  4. CREATE TABLE t1 (name varchar(64), age smallint(3));
  5. INSERT INTO  t1 SET name='Andy', age=31;
  6. INSERT t1 SET name='Jacob', age=2;
  7. INSERT into t1 SET name='Caleb', age=1;
  8. ALTER TABLE t1 ADD id int(8) ZEROFILL AUTO_INCREMENT PRIMARY KEY;
  9. @r/rpl000005.result select * from t1;
  10. save_master_pos;
  11. connection slave;
  12. sync_with_master;
  13. @r/rpl000005.result select * from t1;
  14. connection master;
  15. drop table t1;
  16. save_master_pos;
  17. connection slave;
  18. sync_with_master;