mirror of
https://github.com/MariaDB/server.git
synced 2025-02-01 11:31:51 +01:00
Post-fix for merge mysql-5.1-rep+2 --> mysql-5.1-rep+3
This commit is contained in:
parent
d09bded416
commit
ada4ae340a
9 changed files with 41 additions and 20 deletions
|
@ -19,8 +19,7 @@
|
|||
--echo #########################################################################
|
||||
--echo # CONFIGURATION
|
||||
--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_2 (ddl_case INT, PRIMARY KEY(ddl_case)) ENGINE = Innodb;
|
||||
|
@ -353,23 +352,18 @@ SET AUTOCOMMIT= 1;
|
|||
--echo ###################################################################################
|
||||
--echo # CHECK CONSISTENCY
|
||||
--echo ###################################################################################
|
||||
# Re-enable this after fixing BUG#46572
|
||||
# #--sync_slave_with_master
|
||||
#
|
||||
# #--let $diff_table_1= master:test.tt_1
|
||||
# #--let $diff_table_2= slave:test.tt_1
|
||||
# #--source include/diff_tables.inc
|
||||
#
|
||||
--sync_slave_with_master
|
||||
|
||||
--let $diff_table_1= master:test.tt_1
|
||||
--let $diff_table_2= slave:test.tt_1
|
||||
--source include/diff_tables.inc
|
||||
|
||||
--echo ###################################################################################
|
||||
--echo # CLEAN
|
||||
--echo ###################################################################################
|
||||
#Re-enable this after fixing BUG#46572
|
||||
#connection master;
|
||||
connection master;
|
||||
|
||||
DROP TABLE tt_1;
|
||||
DROP TABLE tt_2;
|
||||
|
||||
|
||||
#Re-enable this after fixing BUG#46572
|
||||
#sync_slave_with_master;
|
||||
sync_slave_with_master;
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
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
|
||||
#########################################################################
|
||||
|
@ -524,6 +530,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db
|
|||
###################################################################################
|
||||
# CHECK CONSISTENCY
|
||||
###################################################################################
|
||||
Comparing tables master:test.tt_1 and slave:test.tt_1
|
||||
###################################################################################
|
||||
# CLEAN
|
||||
###################################################################################
|
||||
DROP TABLE tt_1;
|
||||
DROP TABLE tt_2;
|
||||
|
|
|
@ -4,6 +4,7 @@ reset master;
|
|||
reset slave;
|
||||
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
||||
start slave;
|
||||
call mtr.add_suppression("Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT");
|
||||
DROP DATABASE IF EXISTS `#mysql50#mysqltest-1`;
|
||||
CREATE DATABASE `#mysql50#mysqltest-1`;
|
||||
Master position is not changed
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
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
|
||||
#########################################################################
|
||||
|
@ -565,6 +571,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db
|
|||
###################################################################################
|
||||
# CHECK CONSISTENCY
|
||||
###################################################################################
|
||||
Comparing tables master:test.tt_1 and slave:test.tt_1
|
||||
###################################################################################
|
||||
# CLEAN
|
||||
###################################################################################
|
||||
DROP TABLE tt_1;
|
||||
DROP TABLE tt_2;
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
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
|
||||
#########################################################################
|
||||
|
@ -523,6 +529,9 @@ master-bin.000001 # Query # # DROP DATABASE IF EXISTS db
|
|||
###################################################################################
|
||||
# CHECK CONSISTENCY
|
||||
###################################################################################
|
||||
Comparing tables master:test.tt_1 and slave:test.tt_1
|
||||
###################################################################################
|
||||
# CLEAN
|
||||
###################################################################################
|
||||
DROP TABLE tt_1;
|
||||
DROP TABLE tt_2;
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
# Check file extra/rpl_tests/rpl_implicit_commit_binlog.test
|
||||
################################################################################
|
||||
--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 extra/rpl_tests/rpl_implicit_commit_binlog.test
|
||||
|
|
|
@ -10,6 +10,8 @@
|
|||
# Only run test if "mysql_upgrade" is found
|
||||
--source include/have_mysql_upgrade.inc
|
||||
|
||||
call mtr.add_suppression("Unsafe statement binlogged in statement format since BINLOG_FORMAT = STATEMENT");
|
||||
|
||||
connection master;
|
||||
--disable_warnings
|
||||
DROP DATABASE IF EXISTS `#mysql50#mysqltest-1`;
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
# Check file extra/rpl_tests/rpl_implicit_commit_binlog.test
|
||||
################################################################################
|
||||
--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 extra/rpl_tests/rpl_implicit_commit_binlog.test
|
||||
|
|
|
@ -2,8 +2,7 @@
|
|||
# Check file extra/rpl_tests/rpl_implicit_commit_binlog.test
|
||||
################################################################################
|
||||
--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 extra/rpl_tests/rpl_implicit_commit_binlog.test
|
||||
|
|
Loading…
Add table
Reference in a new issue