mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	More DBUG info for replication Better error messages from replication Fixed bug in replication code when connecting to 'localhost' (time was not released properly) Block ALARM signal on Linux for signal handler thread (Fixes problem with running mysqld with --debug) Removed warning when setting an AUTO_INCREMENT field to NULL
		
			
				
	
	
		
			12 lines
		
	
	
		
			248 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			248 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
source include/master-slave.inc;
 | 
						|
drop table if exists t1;
 | 
						|
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;
 |