fixes Bug #25305 (and several other similar test tailures with the same symptom)

- make tests wait until ndb connects properly
parent 6d6eca5f
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# Test updated to use a wrapper # # Test updated to use a wrapper #
################################# #################################
-- source include/master-slave.inc
eval CREATE TABLE t1 (a INT) ENGINE=$engine_type; eval CREATE TABLE t1 (a INT) ENGINE=$engine_type;
begin; begin;
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# (not internally row-per-row but more like a TRUNCATE, MyISAM # (not internally row-per-row but more like a TRUNCATE, MyISAM
# supports that), is replicated (BUG#13576). # supports that), is replicated (BUG#13576).
-- source include/master-slave.inc
eval create table t1 (a int, b int) engine=$engine_type; eval create table t1 (a int, b int) engine=$engine_type;
insert into t1 values(1,1); insert into t1 values(1,1);
sync_slave_with_master; sync_slave_with_master;
......
...@@ -5,8 +5,6 @@ ...@@ -5,8 +5,6 @@
# Slave needs to be started with --innodb to store table in InnoDB. # Slave needs to be started with --innodb to store table in InnoDB.
# Same test for MyISAM (which had no bug). # Same test for MyISAM (which had no bug).
-- source include/master-slave.inc
eval CREATE TABLE t1 ( eval CREATE TABLE t1 (
a int unsigned not null auto_increment primary key, a int unsigned not null auto_increment primary key,
b int unsigned, b int unsigned,
......
# Requires statement logging # Requires statement logging
-- source include/master-slave.inc
# Clean up old slave's binlogs. # Clean up old slave's binlogs.
# The slave is started with --log-slave-updates # The slave is started with --log-slave-updates
......
...@@ -2,8 +2,6 @@ ...@@ -2,8 +2,6 @@
# some replicate-* rules exist. # some replicate-* rules exist.
# (BUG#7011) # (BUG#7011)
source include/master-slave.inc;
--disable_warnings --disable_warnings
drop table if exists t1,t2; drop table if exists t1,t2;
--enable_warnings --enable_warnings
......
-- source include/master-slave.inc
############################################################################## ##############################################################################
# #
# Let's verify that multi-update with a subselect does not cause the slave to crash # Let's verify that multi-update with a subselect does not cause the slave to crash
......
...@@ -8,8 +8,6 @@ ...@@ -8,8 +8,6 @@
# The slave is started with max_binlog_size=16384 bytes, # The slave is started with max_binlog_size=16384 bytes,
# to force many rotations (approximately 30 rotations) # to force many rotations (approximately 30 rotations)
-- source include/master-slave.inc
# We have to sync with master, to ensure slave had time to start properly # We have to sync with master, to ensure slave had time to start properly
# before we stop it. If not, we get errors about UNIX_TIMESTAMP() in the log. # before we stop it. If not, we get errors about UNIX_TIMESTAMP() in the log.
connection master; connection master;
......
-- source include/master-slave.inc
-- source include/have_binlog_format_row.inc
CREATE TABLE t1 (word CHAR(20) NOT NULL); CREATE TABLE t1 (word CHAR(20) NOT NULL);
LOAD DATA INFILE '../std_data_ln/words.dat' INTO TABLE t1; LOAD DATA INFILE '../std_data_ln/words.dat' INTO TABLE t1;
--replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR --replace_result $MYSQL_TEST_DIR MYSQL_TEST_DIR
......
...@@ -5,10 +5,6 @@ ...@@ -5,10 +5,6 @@
# TEST: To test the UUID() in rbr # # TEST: To test the UUID() in rbr #
############################################################################# #############################################################################
# Includes
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
# Begin clean up test section # Begin clean up test section
connection master; connection master;
......
--source include/have_binlog_format_row.inc
--source include/master-slave.inc
# #
# Basic tests of row-level logging # Basic tests of row-level logging
# #
......
...@@ -5,10 +5,6 @@ ...@@ -5,10 +5,6 @@
# correctly. # correctly.
################################################ ################################################
# Includes
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
# Pre test clean up section # Pre test clean up section
connection master; connection master;
--disable_warnings --disable_warnings
......
# Replication of character sets. # Replication of character sets.
# This test will fail if the server/client does not support enough charsets. # This test will fail if the server/client does not support enough charsets.
# Requires statement logging
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
--disable_warnings --disable_warnings
set timestamp=1000000000; set timestamp=1000000000;
drop database if exists mysqltest2; drop database if exists mysqltest2;
......
...@@ -18,11 +18,6 @@ ...@@ -18,11 +18,6 @@
# Vs slave. # # Vs slave. #
############################################################################# #############################################################################
# Includes
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
# Begin clean up test section # Begin clean up test section
connection master; connection master;
--disable_warnings --disable_warnings
......
...@@ -3,11 +3,6 @@ ...@@ -3,11 +3,6 @@
# Original Date: Aug/13/2005 Created from Bug 12335 # # Original Date: Aug/13/2005 Created from Bug 12335 #
############################################################################# #############################################################################
# Includes
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
# Begin clean up test section # Begin clean up test section
connection master; connection master;
--disable_warnings --disable_warnings
......
...@@ -8,10 +8,6 @@ ...@@ -8,10 +8,6 @@
# to populate a table with data from the first table. # # to populate a table with data from the first table. #
############################################################################# #############################################################################
# Includes
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
# Begin clean up test section # Begin clean up test section
connection master; connection master;
--disable_warnings --disable_warnings
......
...@@ -11,6 +11,7 @@ drop table if exists t1, t2; ...@@ -11,6 +11,7 @@ drop table if exists t1, t2;
flush tables; flush tables;
--require r/true.require --require r/true.require
select support = 'Enabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster'; select support = 'Enabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster';
--source include/ndb_not_readonly.inc
enable_query_log; enable_query_log;
# Check that server2 has NDB support # Check that server2 has NDB support
...@@ -22,11 +23,8 @@ drop table if exists t1, t2; ...@@ -22,11 +23,8 @@ drop table if exists t1, t2;
flush tables; flush tables;
--require r/true.require --require r/true.require
select support = 'Enabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster'; select support = 'Enabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster';
--source include/ndb_not_readonly.inc
enable_query_log; enable_query_log;
# Check should be here as well...
# # Check that second master mysqld has come out of redonly mode
# --source include/ndb_not_readonly.inc
# Set the default connection to 'server1' # Set the default connection to 'server1'
connection server1; connection server1;
...@@ -2,8 +2,5 @@ ...@@ -2,8 +2,5 @@
disable_query_log; disable_query_log;
--require r/true.require --require r/true.require
select support = 'Enabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster'; select support = 'Enabled' as `TRUE` from information_schema.engines where engine = 'ndbcluster';
--source include/ndb_not_readonly.inc
enable_query_log; enable_query_log;
connect (master,127.0.0.1,root,,test,$MASTER_MYPORT,);
connect (master1,127.0.0.1,root,,test,$MASTER_MYPORT,);
connect (slave,127.0.0.1,root,,test,$SLAVE_MYPORT,);
connect (slave1,127.0.0.1,root,,test,$SLAVE_MYPORT,);
connection slave;
-- source include/have_ndb.inc
-- source include/master-slave-reset.inc
# Set the default connection to 'master'
connection master;
# Check that server has come out ot readonly mode # Check that server has come out ot readonly mode
--disable_query_log #
let $counter= 100; # wait for server to connect properly to cluster
#
--error 0,ER_CHECK_NO_SUCH_TABLE,ER_OPEN_AS_READONLY,ER_GET_ERRMSG,ER_KEY_NOT_FOUND
delete from mysql.ndb_apply_status where server_id=0;
let $mysql_errno= 1; let $mysql_errno= 1;
let $counter= 600;
while ($mysql_errno) while ($mysql_errno)
{ {
--error 0, 1005 # Table is readonly until the mysqld has connected properly
create table check_read_only(a int) engine=NDB; --error 0,ER_CHECK_NO_SUCH_TABLE,ER_OPEN_AS_READONLY,ER_GET_ERRMSG
sleep 0.1; replace into mysql.ndb_apply_status values(0,0,"",0,0);
if (!$counter) if ($mysql_errno)
{ {
die("Failed while waiting for mysqld to come out of readonly mode"); if (!$counter)
{
die("Failed while waiting for mysqld to come out of readonly mode");
}
dec $counter;
--sleep 0.1
} }
dec $counter;
} }
delete from mysql.ndb_apply_status where server_id=0;
let $counter= 100; #
let $mysql_errno= 1; # connected
while ($mysql_errno) #
{
--error 0, 1036
insert into check_read_only values(1);
sleep 0.1;
if (!$counter)
{
die("Failed while waiting for mysqld to come out of readonly mode");
}
dec $counter;
}
drop table check_read_only;
--enable_query_log
...@@ -7,5 +7,6 @@ ...@@ -7,5 +7,6 @@
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/master-slave.inc
let $engine_type=innodb; let $engine_type=innodb;
-- source extra/rpl_tests/rpl_commit_after_flush.test -- source extra/rpl_tests/rpl_commit_after_flush.test
...@@ -2,5 +2,6 @@ ...@@ -2,5 +2,6 @@
# By JBM 2006-02-14 added to skip test when NDB # # By JBM 2006-02-14 added to skip test when NDB #
################################################## ##################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/master-slave.inc
let $engine_type=myisam; let $engine_type=myisam;
-- source extra/rpl_tests/rpl_delete_no_where.test -- source extra/rpl_tests/rpl_delete_no_where.test
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
##################################### #####################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/master-slave.inc
let $engine_type=innodb; let $engine_type=innodb;
let $engine_type2=myisam; let $engine_type2=myisam;
-- source extra/rpl_tests/rpl_insert_ignore.test -- source extra/rpl_tests/rpl_insert_ignore.test
...@@ -5,5 +5,6 @@ ...@@ -5,5 +5,6 @@
# Default engine. # # Default engine. #
####################################################### #######################################################
--source include/not_ndb_default.inc --source include/not_ndb_default.inc
--source include/master-slave.inc
let $engine_type=MyISAM; let $engine_type=MyISAM;
--source extra/rpl_tests/rpl_multi_update2.test --source extra/rpl_tests/rpl_multi_update2.test
...@@ -5,5 +5,6 @@ ...@@ -5,5 +5,6 @@
# Default engine. # # Default engine. #
####################################################### #######################################################
--source include/not_ndb_default.inc --source include/not_ndb_default.inc
--source include/master-slave.inc
let $engine_type=MyISAM; let $engine_type=MyISAM;
-- source extra/rpl_tests/rpl_multi_update3.test -- source extra/rpl_tests/rpl_multi_update3.test
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
# test and to have control over the tests. # test and to have control over the tests.
############################################################## ##############################################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/master-slave.inc -- source include/ndb_master-slave.inc
connection slave; connection slave;
-- source include/have_innodb.inc -- source include/have_innodb.inc
connection master; connection master;
......
...@@ -8,6 +8,6 @@ ...@@ -8,6 +8,6 @@
# test and to have control over the tests. # test and to have control over the tests.
############################################################## ##############################################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/master-slave.inc -- source include/ndb_master-slave.inc
SET storage_engine=ndb; SET storage_engine=ndb;
--source extra/rpl_tests/rpl_ndb_2multi_eng.test --source extra/rpl_tests/rpl_ndb_2multi_eng.test
...@@ -2,5 +2,7 @@ ...@@ -2,5 +2,7 @@
# By JBM 2005-02-15 Wrapped to allow reuse of test code# # By JBM 2005-02-15 Wrapped to allow reuse of test code#
######################################################## ########################################################
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc
--source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
--source extra/rpl_tests/rpl_row_UUID.test --source extra/rpl_tests/rpl_row_UUID.test
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
# Change: Augmented test to use with cluster # Change: Augmented test to use with cluster
##################################### #####################################
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/master-slave.inc
--source include/have_binlog_format_mixed_or_row.inc --source include/have_binlog_format_mixed_or_row.inc
--source include/ndb_master-slave.inc
--echo ***************** Test 1 ************************ --echo ***************** Test 1 ************************
--echo --echo
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_ndb_extra.inc --source include/have_ndb_extra.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
# kill any trailing processes # kill any trailing processes
--system killall lt-bankTransactionMaker lt-bankTimer lt-bankMakeGL || true --system killall lt-bankTransactionMaker lt-bankTimer lt-bankMakeGL || true
......
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
......
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
# #
# basic test of blob replication for NDB # basic test of blob replication for NDB
......
...@@ -4,6 +4,8 @@ ...@@ -4,6 +4,8 @@
# code between engine tests # # code between engine tests #
################################# #################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDBCLUSTER; let $engine_type=NDBCLUSTER;
-- source extra/rpl_tests/rpl_row_blob.test -- source extra/rpl_tests/rpl_row_blob.test
...@@ -2,5 +2,7 @@ ...@@ -2,5 +2,7 @@
# By JBM 2005-02-15 Wrapped to allow reuse of test code# # By JBM 2005-02-15 Wrapped to allow reuse of test code#
######################################################## ########################################################
--source include/have_ndb.inc --source include/have_ndb.inc
-- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_row_charset.test -- source extra/rpl_tests/rpl_row_charset.test
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
# set up circular replication # set up circular replication
......
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
connection master; connection master;
CREATE TABLE t1 (a int key, b int) ENGINE=NDB; CREATE TABLE t1 (a int key, b int) ENGINE=NDB;
......
...@@ -5,5 +5,6 @@ ...@@ -5,5 +5,6 @@
# By JBM 2004-02-15 # # By JBM 2004-02-15 #
##################################### #####################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_commit_after_flush.test -- source extra/rpl_tests/rpl_commit_after_flush.test
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
--source include/not_embedded.inc --source include/not_embedded.inc
--source include/big_test.inc --source include/big_test.inc
#--source include/have_ndb_extra.inc #--source include/have_ndb_extra.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
#### Test start cleanup section ##### #### Test start cleanup section #####
--disable_warnings --disable_warnings
......
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
--disable_warnings --disable_warnings
DROP TABLE IF EXISTS t1; DROP TABLE IF EXISTS t1;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
--echo --- Doing pre test cleanup --- --echo --- Doing pre test cleanup ---
......
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
# abort of the test case etc.. # abort of the test case etc..
# #
--source include/master-slave.inc
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/ndb_master-slave.inc
let $engine_type= NDB; let $engine_type= NDB;
let $temp_engine_type= MEMORY; let $temp_engine_type= MEMORY;
let $show_binlog = 0; let $show_binlog = 0;
......
...@@ -4,5 +4,6 @@ ...@@ -4,5 +4,6 @@
######################################### #########################################
--source include/have_ndb.inc --source include/have_ndb.inc
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_delete_no_where.test -- source extra/rpl_tests/rpl_delete_no_where.test
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
--disable_warnings --disable_warnings
DROP DATABASE IF EXISTS replica; DROP DATABASE IF EXISTS replica;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
--disable_warnings --disable_warnings
DROP TABLE IF EXISTS t1, t2; DROP TABLE IF EXISTS t1, t2;
......
...@@ -5,8 +5,8 @@ ...@@ -5,8 +5,8 @@
# Using NDB # Using NDB
########################################### ###########################################
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
--source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/master-slave.inc -- source include/ndb_master-slave.inc
let $engine_type = 'NDB'; let $engine_type = 'NDB';
-- source extra/rpl_tests/rpl_extraSlave_Col.test -- source extra/rpl_tests/rpl_extraSlave_Col.test
......
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
# reduce test case code # # reduce test case code #
################################### ###################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_row_func003.test -- source extra/rpl_tests/rpl_row_func003.test
-- source include/master-slave-end.inc -- source include/master-slave-end.inc
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
# #
# Currently test only works with ndb since it retrieves "old" # Currently test only works with ndb since it retrieves "old"
......
...@@ -7,10 +7,8 @@ ...@@ -7,10 +7,8 @@
# to be able to use the same code for all these different # to be able to use the same code for all these different
# test and to have control over the tests. # test and to have control over the tests.
############################################################## ##############################################################
-- source include/have_innodb.inc
-- source include/master-slave.inc
connection slave;
-- source include/have_ndb.inc -- source include/have_ndb.inc
connection master; -- source include/have_innodb.inc
-- source include/ndb_master-slave.inc
SET storage_engine=innodb; SET storage_engine=innodb;
--source extra/rpl_tests/rpl_ndb_2multi_eng.test --source extra/rpl_tests/rpl_ndb_2multi_eng.test
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/master-slave.inc -- source include/ndb_master-slave.inc
create table t1 (a int, unique(a)) engine=ndbcluster; create table t1 (a int, unique(a)) engine=ndbcluster;
create table t2 (a int, unique(a)) engine=innodb; create table t2 (a int, unique(a)) engine=innodb;
......
...@@ -3,6 +3,7 @@ ...@@ -3,6 +3,7 @@
##################################### #####################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
let $engine_type2=myisam; let $engine_type2=myisam;
-- source extra/rpl_tests/rpl_insert_ignore.test -- source extra/rpl_tests/rpl_insert_ignore.test
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_ndb_extra.inc --source include/have_ndb_extra.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
--disable_warnings --disable_warnings
# reset master # reset master
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
################################### ###################################
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_log.test -- source extra/rpl_tests/rpl_log.test
--source include/have_ndb.inc
--source include/have_multi_ndb.inc --source include/have_multi_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
# note: server2 is another "master" connected to the master cluster # note: server2 is another "master" connected to the master cluster
......
...@@ -7,6 +7,7 @@ ...@@ -7,6 +7,7 @@
# Run this only for row based replication, as replication of # Run this only for row based replication, as replication of
# auto_increment values are not supported with NDB as storage engine # auto_increment values are not supported with NDB as storage engine
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
--source extra/rpl_tests/rpl_multi_update2.test --source extra/rpl_tests/rpl_multi_update2.test
...@@ -4,5 +4,6 @@ ...@@ -4,5 +4,6 @@
############################################################ ############################################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_multi_update3.test -- source extra/rpl_tests/rpl_multi_update3.test
...@@ -7,9 +7,6 @@ ...@@ -7,9 +7,6 @@
# to be able to use the same code for all these different # to be able to use the same code for all these different
# test and to have control over the tests. # test and to have control over the tests.
############################################################## ##############################################################
-- source include/master-slave.inc -- source include/ndb_master-slave.inc
connection slave;
--source include/have_ndb.inc
connection master;
SET storage_engine=myisam; SET storage_engine=myisam;
--source extra/rpl_tests/rpl_ndb_2multi_eng.test --source extra/rpl_tests/rpl_ndb_2multi_eng.test
...@@ -4,5 +4,6 @@ ...@@ -4,5 +4,6 @@
############################################################ ############################################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_ndb_extra.inc -- source include/have_ndb_extra.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_relayrotate.test -- source extra/rpl_tests/rpl_relayrotate.test
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
--disable_warnings --disable_warnings
DROP DATABASE IF EXISTS replica; DROP DATABASE IF EXISTS replica;
......
...@@ -2,5 +2,7 @@ ...@@ -2,5 +2,7 @@
# By JBM 2005-02-15 Wrapped to allow reuse of test code# # By JBM 2005-02-15 Wrapped to allow reuse of test code#
######################################################## ########################################################
--source include/have_ndb.inc --source include/have_ndb.inc
-- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_row_001.test -- source extra/rpl_tests/rpl_row_001.test
...@@ -5,5 +5,7 @@ ...@@ -5,5 +5,7 @@
# For different engines # # For different engines #
################################# #################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDBCLUSTER; let $engine_type=NDBCLUSTER;
-- source extra/rpl_tests/rpl_row_sp003.test -- source extra/rpl_tests/rpl_row_sp003.test
...@@ -5,5 +5,7 @@ ...@@ -5,5 +5,7 @@
# For different engines # # For different engines #
################################# #################################
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $engine_type=NDBCLUSTER; let $engine_type=NDBCLUSTER;
-- source extra/rpl_tests/rpl_row_sp006.test -- source extra/rpl_tests/rpl_row_sp006.test
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/have_innodb.inc --source include/have_innodb.inc
--source include/have_binlog_format_mixed_or_statement.inc --source include/have_binlog_format_mixed_or_statement.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
--connection master --connection master
create table t1 (a int key, b int) engine innodb; create table t1 (a int key, b int) engine innodb;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
--source include/ndb_default_cluster.inc --source include/ndb_default_cluster.inc
--source include/not_embedded.inc --source include/not_embedded.inc
--source include/have_binlog_format_row.inc --source include/have_binlog_format_row.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
# #
# Currently test only works with ndb since it retrieves "old" # Currently test only works with ndb since it retrieves "old"
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
# Includes # Includes
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/master-slave.inc -- source include/ndb_master-slave.inc
let $engine_type=NDB; let $engine_type=NDB;
-- source extra/rpl_tests/rpl_trig004.test -- source extra/rpl_tests/rpl_trig004.test
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
-- source include/have_ndbapi_examples.inc -- source include/have_ndbapi_examples.inc
-- source include/ndb_master-slave.inc
--exec echo Running ndbapi_simple_dual --exec echo Running ndbapi_simple_dual
--exec $NDB_EXAMPLES_DIR/ndbapi_simple_dual/ndbapi_simple_dual $MASTER_MYSOCK "localhost:$NDBCLUSTER_PORT" $SLAVE_MYSOCK "localhost:$NDBCLUSTER_PORT_SLAVE" >> $NDB_EXAMPLES_OUTPUT --exec $NDB_EXAMPLES_DIR/ndbapi_simple_dual/ndbapi_simple_dual $MASTER_MYSOCK "localhost:$NDBCLUSTER_PORT" $SLAVE_MYSOCK "localhost:$NDBCLUSTER_PORT_SLAVE" >> $NDB_EXAMPLES_OUTPUT
......
...@@ -6,5 +6,6 @@ ...@@ -6,5 +6,6 @@
####################################################### #######################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/master-slave.inc
let $engine_type=innodb; let $engine_type=innodb;
-- source extra/rpl_tests/rpl_relayrotate.test -- source extra/rpl_tests/rpl_relayrotate.test
...@@ -3,5 +3,7 @@ ...@@ -3,5 +3,7 @@
# Added to skip if ndb is default # # Added to skip if ndb is default #
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=MYISAM; let $engine_type=MYISAM;
-- source extra/rpl_tests/rpl_row_001.test -- source extra/rpl_tests/rpl_row_001.test
...@@ -3,5 +3,7 @@ ...@@ -3,5 +3,7 @@
# Added to skip if ndb is default # # Added to skip if ndb is default #
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=myisam; let $engine_type=myisam;
--source extra/rpl_tests/rpl_row_UUID.test --source extra/rpl_tests/rpl_row_UUID.test
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $type= 'MYISAM' ; let $type= 'MYISAM' ;
let $extra_index= ; let $extra_index= ;
-- source extra/rpl_tests/rpl_row_basic.test -- source extra/rpl_tests/rpl_row_basic.test
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $type= 'INNODB' ; let $type= 'INNODB' ;
let $extra_index= ; let $extra_index= ;
......
-- source include/have_ndb.inc -- source include/have_ndb.inc
-- source include/have_binlog_format_row.inc
-- source include/ndb_master-slave.inc
let $type= 'NDB' ; let $type= 'NDB' ;
let $extra_index= ; let $extra_index= ;
-- source extra/rpl_tests/rpl_row_basic.test -- source extra/rpl_tests/rpl_row_basic.test
......
...@@ -7,6 +7,8 @@ ...@@ -7,6 +7,8 @@
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=InnoDB; let $engine_type=InnoDB;
-- source extra/rpl_tests/rpl_row_blob.test -- source extra/rpl_tests/rpl_row_blob.test
...@@ -6,6 +6,8 @@ ...@@ -6,6 +6,8 @@
# Added to skip if ndb is default # # Added to skip if ndb is default #
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=myisam; let $engine_type=myisam;
-- source extra/rpl_tests/rpl_row_blob.test -- source extra/rpl_tests/rpl_row_blob.test
...@@ -3,5 +3,7 @@ ...@@ -3,5 +3,7 @@
# Added to skip if ndb is default # # Added to skip if ndb is default #
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=myisam; let $engine_type=myisam;
-- source extra/rpl_tests/rpl_row_charset.test -- source extra/rpl_tests/rpl_row_charset.test
...@@ -7,5 +7,7 @@ ...@@ -7,5 +7,7 @@
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=INNODB; let $engine_type=INNODB;
-- source extra/rpl_tests/rpl_row_func003.test -- source extra/rpl_tests/rpl_row_func003.test
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=MyISAM; let $engine_type=MyISAM;
-- source extra/rpl_tests/rpl_log.test -- source extra/rpl_tests/rpl_log.test
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_binlog_format_row.inc -- source include/have_binlog_format_row.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/master-slave.inc
let $engine_type=InnoDB; let $engine_type=InnoDB;
-- source extra/rpl_tests/rpl_log.test -- source extra/rpl_tests/rpl_log.test
...@@ -7,5 +7,7 @@ ...@@ -7,5 +7,7 @@
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=INNODB; let $engine_type=INNODB;
-- source extra/rpl_tests/rpl_row_sp003.test -- source extra/rpl_tests/rpl_row_sp003.test
...@@ -7,5 +7,7 @@ ...@@ -7,5 +7,7 @@
######################################################## ########################################################
-- source include/not_ndb_default.inc -- source include/not_ndb_default.inc
-- source include/have_innodb.inc -- source include/have_innodb.inc
-- source include/have_binlog_format_row.inc
-- source include/master-slave.inc
let $engine_type=InnoDB; let $engine_type=InnoDB;
-- source extra/rpl_tests/rpl_row_sp006.test -- source extra/rpl_tests/rpl_row_sp006.test
# Requires statement logging # Requires statement logging
-- source include/have_binlog_format_mixed_or_statement.inc -- source include/have_binlog_format_mixed_or_statement.inc
-- source include/master-slave.inc
let $engine_type=MyISAM; let $engine_type=MyISAM;
-- source extra/rpl_tests/rpl_log.test -- source extra/rpl_tests/rpl_log.test
......
--source include/have_ndb.inc --source include/have_ndb.inc
--source include/master-slave.inc --source include/ndb_master-slave.inc
--source include/have_binlog_format_mixed_or_row.inc --source include/have_binlog_format_mixed_or_row.inc
--disable_query_log --disable_query_log
......
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