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

MySQL数据库

开发平台:

Visual C++

  1. source include/master-slave.inc;
  2. # Clean up old slave's binlogs.
  3. # The slave is started with --log-slave-updates
  4. # and this test does SHOW BINLOG EVENTS on the slave's
  5. # binlog. But previous tests can influence the current test's
  6. # binlog (e.g. a temporary table in the previous test has not
  7. # been explicitly deleted, and at the beginning of the current
  8. # test the slave immediately writes DROP TEMPORARY TABLE this_old_table).
  9. # We wait for the slave to have written all he wants to the binlog
  10. # (otherwise RESET MASTER may come too early).
  11. save_master_pos;
  12. connection slave;
  13. sync_with_master;
  14. stop slave;
  15. reset master;
  16. reset slave;
  17. # We are going to read the slave's binlog which contains file_id (for some LOAD
  18. # DATA INFILE); to make it repeatable (not influenced by other tests), we need
  19. # to stop and start the slave, to be sure file_id will start from 1.
  20. #  This can be done with 'server_stop slave', but
  21. # this would require the manager, so most of the time the test will be skipped
  22. # :(
  23. # To workaround this, I (Guilhem) add a (empty) rpl_log-slave.opt (because when
  24. # mysql-test-run finds such a file it restarts the slave before doing the
  25. # test). That's not very elegant but I could find no better way, sorry.
  26. let $VERSION=`select version()`;
  27. connection master;
  28. reset master;
  29. create table t1(n int not null auto_increment primary key);
  30. insert into t1 values (NULL);
  31. drop table t1;
  32. create table t1 (word char(20) not null);
  33. load data infile '../../std_data/words.dat' into table t1 ignore 1 lines;
  34. select count(*) from t1;
  35. drop table t1;
  36. --replace_result $VERSION VERSION
  37. show binlog events;
  38. show binlog events from 79 limit 1;
  39. show binlog events from 79 limit 2;
  40. show binlog events from 79 limit 2,1;
  41. flush logs;
  42. # We need an extra update before doing save_master_pos.
  43. # Otherwise, an unlikely scenario may occur:
  44. # * When the master's binlog_dump thread reads the end of master-bin.001,
  45. # it send the rotate event which is at this end, plus a fake rotate event
  46. # because it's starting to read a new binlog.
  47. # save_master_pos will record the position of the first of the two rotate
  48. # (because the fake one is not in the master's binlog anyway).
  49. # * Later the slave waits for the position of the first rotate event,
  50. # and it may quickly stop (in 'slave stop') without having received the fake
  51. # one.
  52. # So, depending on a few milliseconds, we end up with 2 rotate events in the
  53. # relay log or one, which influences the output of SHOW SLAVE STATUS, making
  54. # it not predictable and causing random test failures.
  55. # To make it predictable, we do a useless update now, but which has the
  56. # interest of making the slave catch both rotate events.
  57. create table t5 (a int);
  58. drop table t5;
  59. # Sync slave and force it to start on another binary log
  60. save_master_pos;
  61. connection slave;
  62. # Note that the above 'slave start' will cause a 3rd rotate event (a fake one)
  63. # to go into the relay log (the master always sends a fake one when replication
  64. # starts). 
  65. start slave;
  66. sync_with_master;
  67. flush logs;
  68. stop slave;
  69. connection master;
  70. # Create some entries for second log
  71. create table t1 (n int);
  72. insert into t1 values (1);
  73. drop table t1;
  74. --replace_result $VERSION VERSION
  75. show binlog events;
  76. show binlog events in 'master-bin.000002';
  77. show binary logs;
  78. save_master_pos;
  79. connection slave;
  80. start slave;
  81. sync_with_master;
  82. show binary logs;
  83. --replace_result $MASTER_MYPORT MASTER_PORT $VERSION VERSION
  84. show binlog events in 'slave-bin.000001' from 4;
  85. --replace_result $MASTER_MYPORT MASTER_PORT $VERSION VERSION
  86. show binlog events in 'slave-bin.000002' from 4;
  87. --replace_result $MASTER_MYPORT MASTER_PORT
  88. --replace_column 1 # 33 #
  89. show slave status;
  90. # Need to recode the following
  91. #show new master for slave with master_log_file='master-bin.000001' and master_log_pos=4 and  master_server_id=1;
  92. #show new master for slave with master_log_file='master-bin.000001' and master_log_pos=79 and master_server_id=1;
  93. #show new master for slave with master_log_file='master-bin.000001' and master_log_pos=311 and master_server_id=1;
  94. #show new master for slave with master_log_file='master-bin.000002' and master_log_pos=4 and master_server_id=1;
  95. #show new master for slave with master_log_file='master-bin.000002' and master_log_pos=122 and master_server_id=1;
  96. --error 1220
  97. show binlog events in 'slave-bin.000005' from 4;
  98. # End of 4.1 tests