Commit c39d032d authored by anozdrin/alik@station's avatar anozdrin/alik@station

Rewrite test case for BUG 25843 to avoid SHOW BINLOG EVENTS

statement.
parent c7de9652
...@@ -34,17 +34,18 @@ stop slave; ...@@ -34,17 +34,18 @@ stop slave;
# #
######################################################################## ########################################################################
# # Connection: slave
# Check that binlog is filled properly.
#
CREATE DATABASE mysqltest1;
CREATE TABLE t1(c INT);
RESET MASTER; START SLAVE;
RESET SLAVE;
# Connection: master
PREPARE stmt_d_1 FROM 'INSERT INTO t1 VALUES(1)';
CREATE DATABASE mysqltest1;
CREATE TABLE t1(db_name CHAR(32), db_col_name CHAR(32));
PREPARE stmt_d_1 FROM 'INSERT INTO t1 VALUES(DATABASE(), @@collation_database)';
EXECUTE stmt_d_1; EXECUTE stmt_d_1;
...@@ -52,18 +53,28 @@ use mysqltest1; ...@@ -52,18 +53,28 @@ use mysqltest1;
EXECUTE stmt_d_1; EXECUTE stmt_d_1;
FLUSH LOGS;
SHOW BINLOG EVENTS FROM 106; # Connection: slave
Log_name Pos Event_type Server_id End_log_pos Info
slave-bin.000001 106 Query 2 193 use `test`; INSERT INTO t1 VALUES(1)
slave-bin.000001 193 Query 2 280 use `test`; INSERT INTO t1 VALUES(1) SELECT * FROM t1;
slave-bin.000001 280 Rotate 2 323 slave-bin.000002;pos=4 db_name db_col_name
test latin1_swedish_ci
test latin1_swedish_ci
# Connection: master
DROP DATABASE mysqltest1; DROP DATABASE mysqltest1;
use test; use test;
# Connection: slave
STOP SLAVE;
######################################################################## ########################################################################
reset master; reset master;
reset slave; reset slave;
...@@ -73,20 +73,24 @@ stop slave; ...@@ -73,20 +73,24 @@ stop slave;
############################################################################### ###############################################################################
--echo --echo
--echo # --echo # Connection: slave
--echo # Check that binlog is filled properly. --echo
--echo # --connection slave
--echo --echo
CREATE DATABASE mysqltest1; START SLAVE;
CREATE TABLE t1(c INT);
--echo --echo
RESET MASTER; --echo # Connection: master
RESET SLAVE; --echo
--connection master
--echo --echo
PREPARE stmt_d_1 FROM 'INSERT INTO t1 VALUES(1)'; CREATE DATABASE mysqltest1;
CREATE TABLE t1(db_name CHAR(32), db_col_name CHAR(32));
--echo
PREPARE stmt_d_1 FROM 'INSERT INTO t1 VALUES(DATABASE(), @@collation_database)';
--echo --echo
EXECUTE stmt_d_1; EXECUTE stmt_d_1;
...@@ -98,10 +102,21 @@ use mysqltest1; ...@@ -98,10 +102,21 @@ use mysqltest1;
EXECUTE stmt_d_1; EXECUTE stmt_d_1;
--echo --echo
FLUSH LOGS; --save_master_pos
--echo
--echo # Connection: slave
--echo
--connection slave
--sync_with_master
--echo --echo
SHOW BINLOG EVENTS FROM 106; SELECT * FROM t1;
--echo
--echo # Connection: master
--echo
--connection master
--echo --echo
DROP DATABASE mysqltest1; DROP DATABASE mysqltest1;
...@@ -109,6 +124,18 @@ DROP DATABASE mysqltest1; ...@@ -109,6 +124,18 @@ DROP DATABASE mysqltest1;
--echo --echo
use test; use test;
--echo
--save_master_pos
--echo
--echo # Connection: slave
--echo
--connection slave
--sync_with_master
--echo
STOP SLAVE;
--echo --echo
--echo ######################################################################## --echo ########################################################################
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment