diff options
author | Sergei Golubchik <sergii@pisem.net> | 2014-05-06 23:20:50 +0200 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2014-05-06 23:20:50 +0200 |
commit | d74414399d8a5a944b47eff95e0796c56c3428a3 (patch) | |
tree | 7daccc9917352d383662de6d3af4b456bb341a50 /mysql-test/suite/perfschema/t/threads_innodb.test | |
download | mariadb-git-d74414399d8a5a944b47eff95e0796c56c3428a3.tar.gz |
perfschema 5.6.10 initial commit.
10.0 files
Diffstat (limited to 'mysql-test/suite/perfschema/t/threads_innodb.test')
-rw-r--r-- | mysql-test/suite/perfschema/t/threads_innodb.test | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/t/threads_innodb.test b/mysql-test/suite/perfschema/t/threads_innodb.test new file mode 100644 index 00000000000..66bceab724a --- /dev/null +++ b/mysql-test/suite/perfschema/t/threads_innodb.test @@ -0,0 +1,20 @@ + +# 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 + +# 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_state, processlist_info, + parent_thread_id, role, instrumented +FROM performance_schema.threads +WHERE name LIKE 'thread/innodb/%' +GROUP BY name; + |