diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:07:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:07:14 +0000 |
commit | a175314c3e5827eb193872241446f2f8f5c9d33c (patch) | |
tree | cd3d60ca99ae00829c52a6ca79150a5b6e62528b /mysql-test/suite/perfschema/t/threads_innodb.test | |
parent | Initial commit. (diff) | |
download | mariadb-10.5-a175314c3e5827eb193872241446f2f8f5c9d33c.tar.xz mariadb-10.5-a175314c3e5827eb193872241446f2f8f5c9d33c.zip |
Adding upstream version 1:10.5.12.upstream/1%10.5.12upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/suite/perfschema/t/threads_innodb.test')
-rw-r--r-- | mysql-test/suite/perfschema/t/threads_innodb.test | 23 |
1 files changed, 23 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 00000000..366c3b82 --- /dev/null +++ b/mysql-test/suite/perfschema/t/threads_innodb.test @@ -0,0 +1,23 @@ + +# 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_state, 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 |