1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

perfschema test formatting. Use --echo #

This commit is contained in:
Sergei Golubchik
2020-03-13 17:52:10 +01:00
parent 57de4def85
commit df25d67d5f
88 changed files with 1835 additions and 1844 deletions

View File

@ -1,20 +1,20 @@
--disable_warnings
--echo
--echo #
SHOW GLOBAL STATUS LIKE "example_%";
--echo
--echo #
SHOW SESSION STATUS LIKE "example_%";
--echo
--echo #
SHOW GLOBAL VARIABLES LIKE "example_%";
--echo
--echo #
SHOW SESSION VARIABLES LIKE "example_%";
--echo
--echo #
SELECT variable_name, variable_value FROM performance_schema.global_status WHERE variable_name LIKE "example_%";
--echo
--echo #
SELECT variable_name, variable_value FROM performance_schema.session_status WHERE variable_name LIKE "example_%";
--echo
--echo #
SELECT variable_name, variable_value FROM performance_schema.global_variables WHERE variable_name LIKE "example_%";
--echo
--echo #
SELECT variable_name, variable_value FROM performance_schema.session_variables WHERE variable_name LIKE "example_%";
#