mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 15:50:51 +03:00 
			
		
		
		
	"set engine_condition_pushdown" is deprecated, engine condition pushdown is controlled by a new "set optimizer_switch=engine_condition_pushdown=on|off".
		
			
				
	
	
		
			6 lines
		
	
	
		
			253 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			253 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| # check how --engine-condition-pushdown and --optimizer-switch
 | |
| # influence each other when used together (last wins).
 | |
| select @@session.engine_condition_pushdown,
 | |
| @@global.engine_condition_pushdown,
 | |
| @@session.optimizer_switch, @@global.optimizer_switch;
 |