mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 12:01:42 +01:00
4a5a4011c3
before trying to creeate the table
48 lines
1.5 KiB
Text
48 lines
1.5 KiB
Text
#############################################################
|
|
# Author: Rafal Somla
|
|
# Date: 2006-08-20
|
|
# Purpose: Trying to test ability to replicate from cluster
|
|
# to other engines (innodb, myisam).
|
|
##############################################################
|
|
--source include/have_ndb.inc
|
|
--source include/have_innodb.inc
|
|
--source include/have_binlog_format_mixed_or_row.inc
|
|
--source include/master-slave.inc
|
|
|
|
# On master use NDB as storage engine.
|
|
connection master;
|
|
SET storage_engine=ndb;
|
|
|
|
--echo
|
|
--echo === NDB -> MYISAM ===
|
|
--echo
|
|
connection slave;
|
|
|
|
# Remove any old ndb_apply_status from slaves datadir
|
|
let $datadir= `SELECT @@datadir`;
|
|
--error 0,1
|
|
remove_file $datadir/mysql/ndb_apply_status.frm;
|
|
--error 0,1
|
|
remove_file $datadir/mysql/ndb_apply_status.ndb;
|
|
|
|
set @@global.slave_exec_mode= 'IDEMPOTENT';
|
|
CREATE TABLE mysql.ndb_apply_status
|
|
( server_id INT UNSIGNED NOT NULL,
|
|
epoch BIGINT UNSIGNED NOT NULL,
|
|
log_name VARCHAR(255) BINARY NOT NULL,
|
|
start_pos BIGINT UNSIGNED NOT NULL,
|
|
end_pos BIGINT UNSIGNED NOT NULL,
|
|
PRIMARY KEY USING HASH (server_id)) ENGINE=MYISAM;
|
|
SET storage_engine=myisam;
|
|
--source extra/rpl_tests/rpl_ndb_2multi_basic.test
|
|
|
|
--echo
|
|
--echo === NDB -> INNODB ===
|
|
--echo
|
|
connection slave;
|
|
alter table mysql.ndb_apply_status engine=innodb;
|
|
SET storage_engine=innodb;
|
|
--source extra/rpl_tests/rpl_ndb_2multi_basic.test
|
|
|
|
connection slave;
|
|
drop table mysql.ndb_apply_status;
|