mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-28 17:15:19 +03:00 
			
		
		
		
	Conflicts: conflict Makefile.am conflict mysql-test/suite/rpl/r/rpl_stm_mixing_engines.result conflict mysql-test/suite/rpl/t/rpl_tmp_table_and_DDL.test conflict sql/opt_sum.cc conflict sql/set_var.cc conflict sql/sql_base.cc conflict sql/sql_priv.h conflict sql/sql_show.cc
		
			
				
	
	
		
			35 lines
		
	
	
		
			635 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			635 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| SET @old_debug = @@GLOBAL.debug;
 | |
| set debug= 'T';
 | |
| select @@debug;
 | |
| @@debug
 | |
| T
 | |
| set debug= '+P';
 | |
| select @@debug;
 | |
| @@debug
 | |
| P:T
 | |
| set debug= '-P';
 | |
| select @@debug;
 | |
| @@debug
 | |
| T
 | |
| SELECT @@session.debug, @@global.debug;
 | |
| @@session.debug	@@global.debug
 | |
| T	
 | |
| SET SESSION debug = '';
 | |
| SELECT @@session.debug, @@global.debug;
 | |
| @@session.debug	@@global.debug
 | |
| 	
 | |
| #
 | |
| # Bug #52629: memory leak from sys_var_thd_dbug in 
 | |
| #  binlog.binlog_write_error
 | |
| #
 | |
| SET GLOBAL debug='d,injecting_fault_writing';
 | |
| SELECT @@global.debug;
 | |
| @@global.debug
 | |
| d,injecting_fault_writing
 | |
| SET GLOBAL debug='';
 | |
| SELECT @@global.debug;
 | |
| @@global.debug
 | |
| 
 | |
| SET GLOBAL debug=@old_debug;
 | |
| End of 5.1 tests
 |