mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	1. use include/show_binlog_events.inc instead of SHOW BINLOG EVENTS 2. use include/show_relaylog_eventc.inc too 3. in all other places where a number might appear in the result file, include binlog_start_pos.inc, calculate the position like pos=`select $binlog_start_pos + 100`; and use replace_result $pos <pos>
		
			
				
	
	
		
			22 lines
		
	
	
		
			531 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			531 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| --source include/have_innodb.inc
 | |
| --source include/master-slave.inc
 | |
| --source include/big_test.inc
 | |
| --source include/not_valgrind.inc
 | |
| --source include/not_embedded.inc
 | |
| 
 | |
| --disable_warnings
 | |
| drop table if exists t1;
 | |
| --enable_warnings
 | |
| 
 | |
| create table t1(a int not null primary key auto_increment, b varchar(256), key second(b)) engine=innodb;
 | |
| 
 | |
| insert into t1 values (1, REPEAT("a", 256));
 | |
| insert into t1 values (2, REPEAT("a", 256));
 | |
| optimize table t1;
 | |
| 
 | |
| drop table t1;
 | |
| 
 | |
| --source include/show_binlog_events.inc
 | |
| 
 | |
| --source include/rpl_end.inc
 |