mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-04 12:56:14 +01:00 
			
		
		
		
	Renamed suite/rpl/include/rpl_sync.inc to rpl_sync_test.inc to remove clash with include/rpl_sync.inc
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			492 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			492 B
		
	
	
	
		
			Text
		
	
	
	
	
	
-- source include/have_log_bin.inc
 | 
						|
-- source include/have_binlog_format_statement.inc
 | 
						|
RESET MASTER;
 | 
						|
 | 
						|
let $binlog_start= query_get_value(SHOW MASTER STATUS, Position, 1);
 | 
						|
CREATE TABLE t1 (c1 char(50)) ENGINE=MyISAM;
 | 
						|
LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
 | 
						|
LOAD DATA CONCURRENT INFILE '../../std_data/words.dat' INTO TABLE t1;
 | 
						|
-- source include/show_binlog_events.inc
 | 
						|
DROP TABLE t1;
 | 
						|
 | 
						|
let $lock_option= CONCURRENT;
 | 
						|
let $engine_type=MyISAM;
 | 
						|
-- source include/rpl_loaddata.test
 |