mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 18:36:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			523 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			523 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| # A wrapper to test that dropping a database is binlogged
 | |
| # correctly. We test all three modes in the same file to avoid
 | |
| # unnecessary server restarts.
 | |
| 
 | |
| --source include/have_innodb.inc
 | |
| --source include/have_binlog_format_statement.inc
 | |
| 
 | |
| set binlog_format=statement;
 | |
| source include/database.test;
 | |
| set binlog_format=mixed;
 | |
| source include/database.test;
 | |
| set binlog_format=mixed;
 | |
| SET @@create_tmp_table_binlog_formats="mixed";
 | |
| source include/database.test;
 | |
| set binlog_format=row;
 | |
| source include/database.test;
 | |
| 
 | |
| show databases;
 | 
