mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			36 lines
		
	
	
		
			914 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			914 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
#############################################################
 | 
						|
# 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/ndb_master-slave.inc
 | 
						|
 | 
						|
# On master use NDB as storage engine.
 | 
						|
connection master;
 | 
						|
SET storage_engine=ndb;
 | 
						|
 | 
						|
--echo
 | 
						|
--echo === NDB -> MYISAM ===
 | 
						|
--echo
 | 
						|
connection slave;
 | 
						|
SET storage_engine=myisam;
 | 
						|
--source extra/rpl_tests/rpl_ndb_2multi_basic.test
 | 
						|
 | 
						|
--echo
 | 
						|
--echo === NDB -> INNODB ===
 | 
						|
--echo
 | 
						|
connection slave;
 | 
						|
SET storage_engine=innodb;
 | 
						|
--source extra/rpl_tests/rpl_ndb_2multi_basic.test
 | 
						|
 | 
						|
--echo
 | 
						|
--echo === NDB -> NDB ===
 | 
						|
--echo
 | 
						|
connection slave;
 | 
						|
SET storage_engine=ndb;
 | 
						|
--source extra/rpl_tests/rpl_ndb_2multi_basic.test
 |