mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
don't show 'performance_schema_%_classes_lost' variables in tests
because FLUSH STATUS does not reset them, so their values are affected by previously run tests since the last server restart.
This commit is contained in:
@ -14,7 +14,8 @@ eval select event_name,
|
||||
order by thread_id, event_id;
|
||||
|
||||
# In case of failures, this will tell if table io are lost.
|
||||
show status like 'performance_schema_%';
|
||||
show status where Variable_name like 'performance_schema_%' and
|
||||
Variable_name not like 'performance_schema_%_classes_lost';
|
||||
|
||||
# Cleanup
|
||||
truncate performance_schema.events_waits_history_long;
|
||||
|
Reference in New Issue
Block a user