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,6 +1,6 @@
#
## Connection default
#
connection default;
USE test;
DROP TABLE IF EXISTS t1;
@ -13,9 +13,9 @@ SELECT @@global.binlog_stmt_cache_size;
SELECT * FROM performance_schema.setup_instruments WHERE name LIKE "%file/sql/io_cache%";
NAME ENABLED TIMED
wait/io/file/sql/io_cache YES YES
#
## Connection con1
#
connect con1, localhost, root,,;
USE test;
CREATE TABLE t1 (s1 INT, s2 VARCHAR(4096));
@ -82,9 +82,9 @@ SELECT COUNT(*) FROM t1;
COUNT(*)
8
disconnect con1;
#
## Connection default
#
connection default;
SELECT COUNT(*) FROM test.t1;
COUNT(*)