mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	Cleaned up test; Removed wrong DROP TABLE commands and use standard table and database names. changed store_warning() -> push_warning_print()
		
			
				
	
	
		
			13 lines
		
	
	
		
			225 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			225 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
source include/master-slave.inc;
 | 
						|
 | 
						|
show slave status;
 | 
						|
 | 
						|
#
 | 
						|
# Load table should not succeed on the master as this is not a slave
 | 
						|
#
 | 
						|
--error 1218
 | 
						|
load table t1 from master;
 | 
						|
connection slave;
 | 
						|
--error 1188
 | 
						|
load table t1 from master;
 |