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/r/show_misc.result | |
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/r/show_misc.result')
-rw-r--r-- | mysql-test/suite/perfschema/r/show_misc.result | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/r/show_misc.result b/mysql-test/suite/perfschema/r/show_misc.result new file mode 100644 index 00000000..6b5baaaf --- /dev/null +++ b/mysql-test/suite/perfschema/r/show_misc.result @@ -0,0 +1,74 @@ +select 1; +1 +1 +SHOW STATUS LIKE 'Last_query_partial_plans'; +Variable_name Value +select 2; +2 +2 +SHOW STATUS LIKE 'Last_query_cost'; +Variable_name Value +Last_query_cost 0.000000 +flush status; +SHOW STATUS LIKE 'Created_tmp_tables'; +Variable_name Value +Created_tmp_tables 0 + +================================================================================ +Bug#21789221 SHOW STATUS FAILS WITH LOCK TABLES AND SHOW_COMPATIBILITY_56=OFF +================================================================================ +Verify that SHOW STATUS and SHOW VARIABLES works under LOCK TABLES mode + +CREATE TABLE test.t1 (s1 INT); +LOCK TABLE test.t1 READ; + +SHOW GLOBAL STATUS WHERE VARIABLE_NAME LIKE "foo"; +Variable_name Value + +SHOW SESSION STATUS WHERE VARIABLE_NAME LIKE "foo"; +Variable_name Value + +SHOW GLOBAL VARIABLES WHERE VARIABLE_NAME LIKE "foo"; +Variable_name Value + +SHOW SESSION VARIABLES WHERE VARIABLE_NAME LIKE "foo"; +Variable_name Value + +UNLOCK TABLES; + +LOCK TABLE test.t1 WRITE; + +SHOW GLOBAL STATUS WHERE VARIABLE_NAME LIKE "foo"; +Variable_name Value + +SHOW SESSION STATUS WHERE VARIABLE_NAME LIKE "foo"; +Variable_name Value + +SHOW GLOBAL VARIABLES WHERE VARIABLE_NAME LIKE "foo"; +Variable_name Value + +SHOW SESSION VARIABLES WHERE VARIABLE_NAME LIKE "foo"; +Variable_name Value + +UNLOCK TABLES; +DROP TABLE test.t1; + +================================================================================ +Bug#28515475 BOGUS DATA WHEN ORDERING RESULTS FROM VARIABLES_BY_THREAD +================================================================================ +Verify the results from "WHERE variable_name IN(...)", particularly for those +variables that are listed after the deprecated variable gtid_executed. +The ORDER BY also forces an additional code path through rnd_pos(). + +SELECT variable_name FROM performance_schema.variables_by_thread +WHERE variable_name IN ('interactive_timeout','net_read_timeout','net_write_timeout','wait_timeout') +ORDER BY variable_name; +variable_name +interactive_timeout +net_read_timeout +net_write_timeout +wait_timeout + +================================================================================ +CLEAN UP +================================================================================ |