mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1,006 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1,006 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| ################################################################################
 | |
| #  Support binlog_row_image FULL_NODUP mode
 | |
| #
 | |
| #  In FULL_NODUP:
 | |
| #  - before image includes all columns.
 | |
| #  - after image includes only changed columns.
 | |
| ################################################################################
 | |
| 
 | |
| --source include/have_binlog_format_row.inc
 | |
| --source include/test_db_charset_latin1.inc
 | |
| 
 | |
| --echo #
 | |
| --echo # FULL_NODUP mode works as expected
 | |
| --echo #
 | |
| SET binlog_row_image = "FULL_NODUP";
 | |
| --source suite/binlog/include/row_img.test
 | |
| 
 | |
| --echo #
 | |
| --echo # MINIMAL mode works as expected
 | |
| --echo #
 | |
| SET binlog_row_image = "MINIMAL";
 | |
| --source suite/binlog/include/row_img.test
 | |
| 
 | |
| --echo #
 | |
| --echo # NOBLOB mode works as expected
 | |
| --echo #
 | |
| SET binlog_row_image = "NOBLOB";
 | |
| --source suite/binlog/include/row_img.test
 | |
| 
 | |
| --echo #
 | |
| --echo # FULL mode works as expected
 | |
| --echo #
 | |
| SET binlog_row_image = "FULL";
 | |
| --source suite/binlog/include/row_img.test
 | |
| 
 | |
| RESET MASTER;
 | |
| 
 | |
| --source include/test_db_charset_restore.inc
 | 
