26 lines
858 B
Plaintext
26 lines
858 B
Plaintext
# The include statement below is a temp one for tests that are yet to
|
|
#be ported to run with InnoDB,
|
|
#but needs to be kept for tests that would need MyISAM in future.
|
|
--source include/force_myisam_default.inc
|
|
|
|
#############################################################
|
|
# Author: Rafal Somla
|
|
# Date: 2006-08-20
|
|
# Purpose: Trying to test ability to replicate from cluster
|
|
# to other engines (innodb, myisam), see also rpl_ndb_2other.test
|
|
##############################################################
|
|
--source include/have_binlog_format_mixed_or_row.inc
|
|
--source include/have_ndb.inc
|
|
--source suite/ndb_rpl/ndb_master-slave.inc
|
|
|
|
# On master use NDB as storage engine.
|
|
connection master;
|
|
SET default_storage_engine=ndb;
|
|
|
|
--echo
|
|
--echo === NDB -> NDB ===
|
|
--echo
|
|
connection slave;
|
|
--source suite/ndb_rpl/t/ndb_rpl_2multi_basic.inc
|
|
--source include/rpl_end.inc
|