Commit 2b6eaa0e authored by Alfranio Correia's avatar Alfranio Correia

Post-fix for merge mysql-5.1-rep+2 --> mysql-5.1-rep+3

mysql-test/extra/rpl_tests/rpl_implicit_commit_binlog.test:
  Re-enabled some parts of the test after BUG#46572
mysql-test/suite/rpl/r/rpl_mixed_implicit_commit_binlog.result:
  Re-enabled some parts of the test after BUG#46572
mysql-test/suite/rpl/r/rpl_mysql_upgrade.result:
  Suppressed warning messages due to unsafe statements.
mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result:
  Re-enabled some parts of the test after BUG#46572
mysql-test/suite/rpl/r/rpl_stm_implicit_commit_binlog.result:
  Re-enabled some parts of the test after BUG#46572
mysql-test/suite/rpl/t/rpl_mixed_implicit_commit_binlog.test:
  Re-enabled some parts of the test after BUG#46572
mysql-test/suite/rpl/t/rpl_mysql_upgrade.test:
  Suppressed warning messages due to unsafe statements.
mysql-test/suite/rpl/t/rpl_row_implicit_commit_binlog.test:
  Re-enabled some parts of the test after BUG#46572
mysql-test/suite/rpl/t/rpl_stm_implicit_commit_binlog.test:
  Re-enabled some parts of the test after BUG#46572
parent 127757cd
...@@ -19,8 +19,7 @@ ...@@ -19,8 +19,7 @@
--echo ######################################################################### --echo #########################################################################
--echo # CONFIGURATION --echo # CONFIGURATION
--echo ######################################################################### --echo #########################################################################
#Re-enable this after fixing BUG#46572 connection master;
#connection master;
CREATE TABLE tt_1 (ddl_case INT, PRIMARY KEY(ddl_case)) ENGINE = Innodb; CREATE TABLE tt_1 (ddl_case INT, PRIMARY KEY(ddl_case)) ENGINE = Innodb;
CREATE TABLE tt_2 (ddl_case INT, PRIMARY KEY(ddl_case)) ENGINE = Innodb; CREATE TABLE tt_2 (ddl_case INT, PRIMARY KEY(ddl_case)) ENGINE = Innodb;
...@@ -353,23 +352,18 @@ SET AUTOCOMMIT= 1; ...@@ -353,23 +352,18 @@ SET AUTOCOMMIT= 1;
--echo ################################################################################### --echo ###################################################################################
--echo # CHECK CONSISTENCY --echo # CHECK CONSISTENCY
--echo ################################################################################### --echo ###################################################################################
# Re-enable this after fixing BUG#46572 --sync_slave_with_master
# #--sync_slave_with_master
# --let $diff_table_1= master:test.tt_1
# #--let $diff_table_1= master:test.tt_1 --let $diff_table_2= slave:test.tt_1
# #--let $diff_table_2= slave:test.tt_1 --source include/diff_tables.inc
# #--source include/diff_tables.inc
#
--echo ################################################################################### --echo ###################################################################################
--echo # CLEAN --echo # CLEAN
--echo ################################################################################### --echo ###################################################################################
#Re-enable this after fixing BUG#46572 connection master;
#connection master;
DROP TABLE tt_1; DROP TABLE tt_1;
DROP TABLE tt_2; DROP TABLE tt_2;
sync_slave_with_master;
#Re-enable this after fixing BUG#46572
#sync_slave_with_master;
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
######################################################################### #########################################################################
# CONFIGURATION # CONFIGURATION
######################################################################### #########################################################################
...@@ -524,6 +530,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db ...@@ -524,6 +530,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db
################################################################################### ###################################################################################
# CHECK CONSISTENCY # CHECK CONSISTENCY
################################################################################### ###################################################################################
Comparing tables master:test.tt_1 and slave:test.tt_1
################################################################################### ###################################################################################
# CLEAN # CLEAN
################################################################################### ###################################################################################
DROP TABLE tt_1;
DROP TABLE tt_2;
...@@ -4,6 +4,7 @@ reset master; ...@@ -4,6 +4,7 @@ reset master;
reset slave; reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9; drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave; start slave;
call mtr.add_suppression("Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT");
DROP DATABASE IF EXISTS `#mysql50#mysqltest-1`; DROP DATABASE IF EXISTS `#mysql50#mysqltest-1`;
CREATE DATABASE `#mysql50#mysqltest-1`; CREATE DATABASE `#mysql50#mysqltest-1`;
Master position is not changed Master position is not changed
......
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
######################################################################### #########################################################################
# CONFIGURATION # CONFIGURATION
######################################################################### #########################################################################
...@@ -565,6 +571,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db ...@@ -565,6 +571,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db
################################################################################### ###################################################################################
# CHECK CONSISTENCY # CHECK CONSISTENCY
################################################################################### ###################################################################################
Comparing tables master:test.tt_1 and slave:test.tt_1
################################################################################### ###################################################################################
# CLEAN # CLEAN
################################################################################### ###################################################################################
DROP TABLE tt_1;
DROP TABLE tt_2;
stop slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
reset master;
reset slave;
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
start slave;
######################################################################### #########################################################################
# CONFIGURATION # CONFIGURATION
######################################################################### #########################################################################
...@@ -523,6 +529,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db ...@@ -523,6 +529,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db
################################################################################### ###################################################################################
# CHECK CONSISTENCY # CHECK CONSISTENCY
################################################################################### ###################################################################################
Comparing tables master:test.tt_1 and slave:test.tt_1
################################################################################### ###################################################################################
# CLEAN # CLEAN
################################################################################### ###################################################################################
DROP TABLE tt_1;
DROP TABLE tt_2;
...@@ -2,8 +2,7 @@ ...@@ -2,8 +2,7 @@
# Check file extra/rpl_tests/rpl_implicit_commit_binlog.test # Check file extra/rpl_tests/rpl_implicit_commit_binlog.test
################################################################################ ################################################################################
--source include/have_binlog_format_mixed.inc --source include/have_binlog_format_mixed.inc
#Re-enable this after fixing BUG#46572 --source include/master-slave.inc
#--source include/master-slave.inc
--source include/have_innodb.inc --source include/have_innodb.inc
--source extra/rpl_tests/rpl_implicit_commit_binlog.test --source extra/rpl_tests/rpl_implicit_commit_binlog.test
...@@ -10,6 +10,8 @@ ...@@ -10,6 +10,8 @@
# Only run test if "mysql_upgrade" is found # Only run test if "mysql_upgrade" is found
--source include/have_mysql_upgrade.inc --source include/have_mysql_upgrade.inc
call mtr.add_suppression("Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT");
connection master; connection master;
--disable_warnings --disable_warnings
DROP DATABASE IF EXISTS `#mysql50#mysqltest-1`; DROP DATABASE IF EXISTS `#mysql50#mysqltest-1`;
......
...@@ -2,8 +2,7 @@ ...@@ -2,8 +2,7 @@
# Check file extra/rpl_tests/rpl_implicit_commit_binlog.test # Check file extra/rpl_tests/rpl_implicit_commit_binlog.test
################################################################################ ################################################################################
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
#Re-enable this after fixing BUG#46572 --source include/master-slave.inc
#--source include/master-slave.inc
--source include/have_innodb.inc --source include/have_innodb.inc
--source extra/rpl_tests/rpl_implicit_commit_binlog.test --source extra/rpl_tests/rpl_implicit_commit_binlog.test
...@@ -2,8 +2,7 @@ ...@@ -2,8 +2,7 @@
# Check file extra/rpl_tests/rpl_implicit_commit_binlog.test # Check file extra/rpl_tests/rpl_implicit_commit_binlog.test
################################################################################ ################################################################################
--source include/have_binlog_format_statement.inc --source include/have_binlog_format_statement.inc
#Re-enable this after fixing BUG#46572 --source include/master-slave.inc
#--source include/master-slave.inc
--source include/have_innodb.inc --source include/have_innodb.inc
--source extra/rpl_tests/rpl_implicit_commit_binlog.test --source extra/rpl_tests/rpl_implicit_commit_binlog.test
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