mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 20:36:16 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
#
 | 
						|
# MDEV-29741 SHOW BINLOG EVENTS shows garbage with system_versioning_insert_history=on
 | 
						|
# MDEV-29732 mysqlbinlog produces syntactically incorrect output with system_versioning_insert_history
 | 
						|
#
 | 
						|
reset master;
 | 
						|
set timestamp=1000000000;
 | 
						|
create table t (a int) with system versioning;
 | 
						|
set system_versioning_insert_history= on;
 | 
						|
insert into t (a) values (1);
 | 
						|
set system_versioning_insert_history= off;
 | 
						|
drop table t;
 | 
						|
include/show_binlog_events.inc
 | 
						|
Log_name	Pos	Event_type	Server_id	End_log_pos	Info
 | 
						|
master-bin.000001	#	Gtid	#	#	GTID #-#-#
 | 
						|
master-bin.000001	#	Query	#	#	use `test`; create table t (a int) with system versioning
 | 
						|
master-bin.000001	#	Gtid	#	#	BEGIN GTID #-#-#
 | 
						|
master-bin.000001	#	Query	#	#	use `test`; set @@system_versioning_insert_history=1; insert into t (a) values (1)
 | 
						|
master-bin.000001	#	Query	#	#	set @@system_versioning_insert_history=1; COMMIT
 | 
						|
master-bin.000001	#	Gtid	#	#	GTID #-#-#
 | 
						|
master-bin.000001	#	Query	#	#	use `test`; DROP TABLE `t` /* generated by server */
 | 
						|
flush binary logs;
 | 
						|
/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=1*/;
 | 
						|
/*!40019 SET @@session.max_delayed_threads=0*/;
 | 
						|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
 | 
						|
DELIMITER /*!*/;
 | 
						|
ROLLBACK/*!*/;
 | 
						|
use `test`/*!*/;
 | 
						|
SET TIMESTAMP=1000000000/*!*/;
 | 
						|
SET @@session.pseudo_thread_id=999999999/*!*/;
 | 
						|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=0, @@session.unique_checks=1, @@session.autocommit=1, @@session.check_constraint_checks=1, @@session.sql_if_exists=0, @@session.explicit_defaults_for_timestamp=1, @@session.system_versioning_insert_history=0/*!*/;
 | 
						|
SET @@session.sql_mode=1411383296/*!*/;
 | 
						|
SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
 | 
						|
/*!\C latin1 *//*!*/;
 | 
						|
SET @@session.character_set_client=latin1,@@session.collation_connection=8,@@session.collation_server=2304/*!*/;
 | 
						|
SET @@session.lc_time_names=0/*!*/;
 | 
						|
SET @@session.collation_database=DEFAULT/*!*/;
 | 
						|
create table t (a int) with system versioning
 | 
						|
/*!*/;
 | 
						|
START TRANSACTION
 | 
						|
/*!*/;
 | 
						|
SET TIMESTAMP=1000000000/*!*/;
 | 
						|
SET @@session.system_versioning_insert_history=1/*!*/;
 | 
						|
insert into t (a) values (1)
 | 
						|
/*!*/;
 | 
						|
SET TIMESTAMP=1000000000/*!*/;
 | 
						|
COMMIT
 | 
						|
/*!*/;
 | 
						|
SET TIMESTAMP=1000000000/*!*/;
 | 
						|
SET @@session.system_versioning_insert_history=0/*!*/;
 | 
						|
DROP TABLE `t` /* generated by server */
 | 
						|
/*!*/;
 | 
						|
DELIMITER ;
 | 
						|
# End of log file
 | 
						|
ROLLBACK /* added by mysqlbinlog */;
 | 
						|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
 | 
						|
/*!50530 SET @@SESSION.PSEUDO_SLAVE_MODE=0*/;
 | 
						|
set timestamp=default;
 |