mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			733 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			733 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
--source include/have_row_based.inc
 | 
						|
--source include/have_binlog_format_row.inc
 | 
						|
--source include/master-slave.inc
 | 
						|
 | 
						|
# Bug#15942 (RBR ignores --binlog_ignore_db and tries to map to table
 | 
						|
# on slave for writes)
 | 
						|
 | 
						|
CREATE DATABASE test_ignore;      # --binlog_ignore_db=mysqltest_ignore
 | 
						|
 | 
						|
--echo **** On Master ****
 | 
						|
SHOW DATABASES;
 | 
						|
USE test;
 | 
						|
CREATE TABLE t1 (a INT, b INT);
 | 
						|
SHOW TABLES;
 | 
						|
INSERT INTO t1 VALUES (1,1), (2,2);
 | 
						|
USE test_ignore;
 | 
						|
CREATE TABLE t2 (a INT, b INT);
 | 
						|
SHOW TABLES;
 | 
						|
INSERT INTO t2 VALUES (3,3), (4,4);
 | 
						|
SHOW BINLOG EVENTS FROM 102;
 | 
						|
sync_slave_with_master;
 | 
						|
--echo **** On Slave ****
 | 
						|
SHOW DATABASES;
 | 
						|
USE test;
 | 
						|
SHOW TABLES;
 | 
						|
--error 1049
 | 
						|
USE test_ignore;
 | 
						|
 | 
						|
connection master;
 | 
						|
DROP DATABASE test_ignore;
 | 
						|
sync_slave_with_master;
 |