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

MySQL数据库

开发平台:

Visual C++

  1. # This one assumes we are ignoring updates on table mysqltest_foo, but doing
  2. # the ones on all other tables
  3. source include/master-slave.inc;
  4. connection slave;
  5. #
  6. # For this test we must be in the test database
  7. #
  8. use test;
  9. --disable_warnings
  10. drop table if exists mysqltest_foo;
  11. drop table if exists mysqltest_bar;
  12. --enable_warnings
  13. create table mysqltest_foo (n int);
  14. insert into mysqltest_foo values(4);
  15. connection master;
  16. use test;
  17. create table mysqltest_foo (n int);
  18. insert into mysqltest_foo values(5);
  19. create table mysqltest_bar (m int);
  20. insert into mysqltest_bar values(15);
  21. create table t1 (k int);
  22. insert into t1 values(55);
  23. save_master_pos;
  24. connection slave;
  25. sync_with_master;
  26. select mysqltest_foo.n,mysqltest_bar.m,t1.k from mysqltest_foo,mysqltest_bar,t1;
  27. connection master;
  28. drop table mysqltest_foo,mysqltest_bar,t1;
  29. save_master_pos;
  30. connection slave;
  31. sync_with_master;
  32. drop table mysqltest_foo,mysqltest_bar,t1;
  33. # End of 4.1 tests