mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-30 18:36:12 +01:00 
			
		
		
		
	 75b24a002f
			
		
	
	
	75b24a002f
	
	
	
		
			
			Sometimes, thread/innodb/thread_pool_thread may display processlist_state='buffer pool load' instead of NULL when the test is executed soon enough after server startup. Let us suppress that information to avoid spurious failures.
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			881 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			881 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| 
 | |
| # Tests for special content of performance_schema.threads
 | |
| #
 | |
| # Show InnoDB related content in performance_schema.threads
 | |
| 
 | |
| --source include/not_embedded.inc
 | |
| --source include/have_innodb.inc
 | |
| --source include/have_perfschema.inc
 | |
| 
 | |
| #--source include/turn_off_only_full_group_by.inc
 | |
| 
 | |
| # There are several InnoDB io_handler_threads servicing for read IO, write IO etc.
 | |
| # The number of these threads is at least for some types configurable.
 | |
| # We suppress here duplicates rows with the goal to avoid that the test fails
 | |
| # in case some defaults are changed.
 | |
| SELECT name, type, processlist_user, processlist_host, processlist_db,
 | |
|        processlist_command, processlist_time, processlist_info,
 | |
|        parent_thread_id, role, instrumented
 | |
| FROM performance_schema.threads
 | |
| WHERE name LIKE 'thread/innodb/%'
 | |
| GROUP BY name;
 | |
| 
 | |
| #--source include/restore_sql_mode_after_turn_off_only_full_group_by.inc
 |