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

MySQL数据库

开发平台:

Visual C++

  1. # Let's verify that multi-update is not always skipped by slave if
  2. # some replicate-* rules exist.
  3. # (BUG#7011)
  4. source include/master-slave.inc;
  5. --disable_warnings
  6. drop table if exists t1,t2;
  7. --enable_warnings
  8. CREATE TABLE t1 (
  9.  a int unsigned not null auto_increment primary key,
  10.  b int unsigned
  11. ) ENGINE=MyISAM;
  12. CREATE TABLE t2 (
  13.  a int unsigned not null auto_increment primary key,
  14.  b int unsigned
  15. ) ENGINE=MyISAM;
  16. INSERT INTO t1 VALUES (NULL, 0);
  17. INSERT INTO t1 SELECT NULL, 0 FROM t1;
  18. INSERT INTO t2 VALUES (NULL, 0), (NULL,1);
  19. SELECT * FROM t1 ORDER BY a;
  20. SELECT * FROM t2 ORDER BY a;
  21. UPDATE t1, t2 SET t1.b = (t2.b+4) WHERE t1.a = t2.a;
  22. SELECT * FROM t1 ORDER BY a;
  23. SELECT * FROM t2 ORDER BY a;
  24. save_master_pos;
  25. connection slave;
  26. sync_with_master;
  27. SELECT * FROM t1 ORDER BY a;
  28. SELECT * FROM t2 ORDER BY a;
  29. connection master;
  30. drop table t1,t2;
  31. sync_slave_with_master;
  32. #
  33. # BUG#13236 multi-update with subquery & --replicate-ignore-table
  34. #
  35. reset master;
  36. connection master;
  37. CREATE TABLE t1 ( a INT );
  38. INSERT INTO t1 VALUES (0);
  39. UPDATE t1, (SELECT 3 as b) AS x SET t1.a = x.b;
  40. select * from t1;
  41. sync_slave_with_master;
  42. connection slave;
  43. select * from t1;
  44. connection master;
  45. drop table t1;
  46. sync_slave_with_master;
  47. # End of 4.1 tests