summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/r/io_cache.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2020-02-15 18:25:57 +0100
committerSergei Golubchik <serg@mariadb.org>2020-03-10 19:24:23 +0100
commit7af733a5a2cb7f79ffb5ff0129cad6db6f3cc359 (patch)
treef8f9cab2cd92e43b5fd20c9ac77f9487ece4e5a7 /mysql-test/suite/perfschema/r/io_cache.result
parent81cffda2e68ea5a155b74f24ae4345388afa963c (diff)
downloadmariadb-git-7af733a5a2cb7f79ffb5ff0129cad6db6f3cc359.tar.gz
perfschema compilation, test and misc fixes
Diffstat (limited to 'mysql-test/suite/perfschema/r/io_cache.result')
-rw-r--r--mysql-test/suite/perfschema/r/io_cache.result5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/suite/perfschema/r/io_cache.result b/mysql-test/suite/perfschema/r/io_cache.result
index 48988cb3a05..4b742610a39 100644
--- a/mysql-test/suite/perfschema/r/io_cache.result
+++ b/mysql-test/suite/perfschema/r/io_cache.result
@@ -1,6 +1,7 @@
## Connection default
+connection default;
USE test;
DROP TABLE IF EXISTS t1;
SELECT @@global.binlog_cache_size;
@@ -15,6 +16,7 @@ wait/io/file/sql/io_cache YES YES
## Connection con1
+connect con1, localhost, root,,;
USE test;
CREATE TABLE t1 (s1 INT, s2 VARCHAR(4096));
SET SESSION AUTOCOMMIT = 0;
@@ -79,13 +81,16 @@ COMMIT;
SELECT COUNT(*) FROM t1;
COUNT(*)
8
+disconnect con1;
## Connection default
+connection default;
SELECT COUNT(*) FROM test.t1;
COUNT(*)
8
SELECT COUNT(*) FROM performance_schema.file_summary_by_event_name WHERE event_name LIKE "%io_cache%";
COUNT(*)
1
+connection default;
DROP TABLE t1;