1
0
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:
Sergei Golubchik
2017-03-08 14:54:12 +01:00
parent 3d06f0f72c
commit 0633d0e2ed
13 changed files with 26 additions and 109 deletions

View File

@ -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;