mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 19:06:14 +01:00 
			
		
		
		
	 76f0b94bb0
			
		
	
	
	76f0b94bb0
	
	
	
		
			
			sql/sql_insert.cc: CREATE ... IF NOT EXISTS may do nothing, but it is still not a failure. don't forget to my_ok it. ****** CREATE ... IF NOT EXISTS may do nothing, but it is still not a failure. don't forget to my_ok it. sql/sql_table.cc: small cleanup ****** small cleanup
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			802 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			802 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| UPDATE performance_schema.setup_instruments SET TIMED = 'NO';
 | |
| UPDATE performance_schema.setup_instruments SET ENABLED = 'NO';
 | |
| UPDATE performance_schema.setup_timers
 | |
| SET TIMER_NAME = 'NANOSECOND' WHERE NAME = 'Wait';
 | |
| UPDATE performance_schema.setup_timers
 | |
| SET TIMER_NAME = 'CYCLE' WHERE NAME = 'Wait';
 | |
| UPDATE performance_schema.setup_instruments SET TIMED = 'YES';
 | |
| UPDATE performance_schema.setup_instruments SET ENABLED = 'YES'
 | |
| WHERE NAME IN ('wait/io/file/sql/FRM',
 | |
| 'thread/sql/Connection',
 | |
| 'wait/synch/cond/sql/COND_mdl',
 | |
| 'wait/synch/rwlock/sql/LOCK_sys_init_connect',
 | |
| 'wait/synch/mutex/sql/LOCK_mdl');
 | |
| UPDATE performance_schema.setup_consumers SET ENABLED = 'NO'
 | |
| WHERE NAME = 'events_waits_history';
 | |
| UPDATE performance_schema.setup_consumers SET ENABLED = 'YES'
 | |
| WHERE NAME = 'events_waits_history';
 |