mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
Bug#13417440 : 63340: ARCHIVE FILE IO NOT INSTRUMENTED
Details: - Modified test case to make sure its run for all and not only for archive Storage Engine.
This commit is contained in:
@ -36,9 +36,9 @@ Qcache_hits 1
|
|||||||
select spins from performance_schema.events_waits_current order by event_name limit 1;
|
select spins from performance_schema.events_waits_current order by event_name limit 1;
|
||||||
spins
|
spins
|
||||||
NULL
|
NULL
|
||||||
select name from performance_schema.setup_instruments order by name limit 1;
|
select * from performance_schema.setup_timers where name='wait';
|
||||||
name
|
NAME TIMER_NAME
|
||||||
wait/io/file/archive/data
|
wait CYCLE
|
||||||
show status like "Qcache_queries_in_cache";
|
show status like "Qcache_queries_in_cache";
|
||||||
Variable_name Value
|
Variable_name Value
|
||||||
Qcache_queries_in_cache 1
|
Qcache_queries_in_cache 1
|
||||||
@ -51,9 +51,9 @@ Qcache_hits 1
|
|||||||
select spins from performance_schema.events_waits_current order by event_name limit 1;
|
select spins from performance_schema.events_waits_current order by event_name limit 1;
|
||||||
spins
|
spins
|
||||||
NULL
|
NULL
|
||||||
select name from performance_schema.setup_instruments order by name limit 1;
|
select * from performance_schema.setup_timers where name='wait';
|
||||||
name
|
NAME TIMER_NAME
|
||||||
wait/io/file/archive/data
|
wait CYCLE
|
||||||
show status like "Qcache_queries_in_cache";
|
show status like "Qcache_queries_in_cache";
|
||||||
Variable_name Value
|
Variable_name Value
|
||||||
Qcache_queries_in_cache 1
|
Qcache_queries_in_cache 1
|
||||||
|
@ -6,7 +6,6 @@
|
|||||||
--source include/have_query_cache.inc
|
--source include/have_query_cache.inc
|
||||||
--source include/not_embedded.inc
|
--source include/not_embedded.inc
|
||||||
--source include/have_perfschema.inc
|
--source include/have_perfschema.inc
|
||||||
--source include/have_archive.inc
|
|
||||||
|
|
||||||
--disable_warnings
|
--disable_warnings
|
||||||
drop table if exists t1;
|
drop table if exists t1;
|
||||||
@ -35,7 +34,7 @@ show status like "Qcache_hits";
|
|||||||
|
|
||||||
select spins from performance_schema.events_waits_current order by event_name limit 1;
|
select spins from performance_schema.events_waits_current order by event_name limit 1;
|
||||||
|
|
||||||
select name from performance_schema.setup_instruments order by name limit 1;
|
select * from performance_schema.setup_timers where name='wait';
|
||||||
|
|
||||||
show status like "Qcache_queries_in_cache";
|
show status like "Qcache_queries_in_cache";
|
||||||
show status like "Qcache_inserts";
|
show status like "Qcache_inserts";
|
||||||
@ -43,7 +42,7 @@ show status like "Qcache_hits";
|
|||||||
|
|
||||||
select spins from performance_schema.events_waits_current order by event_name limit 1;
|
select spins from performance_schema.events_waits_current order by event_name limit 1;
|
||||||
|
|
||||||
select name from performance_schema.setup_instruments order by name limit 1;
|
select * from performance_schema.setup_timers where name='wait';
|
||||||
|
|
||||||
show status like "Qcache_queries_in_cache";
|
show status like "Qcache_queries_in_cache";
|
||||||
show status like "Qcache_inserts";
|
show status like "Qcache_inserts";
|
||||||
|
Reference in New Issue
Block a user