summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/t/show_coverage.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/perfschema/t/show_coverage.test')
-rw-r--r--mysql-test/suite/perfschema/t/show_coverage.test22
1 files changed, 0 insertions, 22 deletions
diff --git a/mysql-test/suite/perfschema/t/show_coverage.test b/mysql-test/suite/perfschema/t/show_coverage.test
index 78c59ea101f..84a6f27113e 100644
--- a/mysql-test/suite/perfschema/t/show_coverage.test
+++ b/mysql-test/suite/perfschema/t/show_coverage.test
@@ -143,25 +143,3 @@ FLUSH STATUS;
--let $assert_text = Default session value after FLUSH must remain zero
--source include/assert.inc
-
---echo # BUG: results from inactive connections are not shown
-SET time_zone= '+2:00';
-
---connect (con1, localhost, root,,)
-set time_zone= '+10:00';
-
-SELECT THREAD_ID INTO @con1_thread_id FROM performance_schema.threads
- WHERE PROCESSLIST_ID = CONNECTION_ID();
-
-SELECT thread_id = @con1_thread_id as current, variable_value
- FROM performance_schema.variables_by_thread
- WHERE variable_name = "time_zone";
-
---disconnect con1
---connection default
-
-SELECT THREAD_ID INTO @def_thread_id FROM performance_schema.threads
- WHERE PROCESSLIST_ID = CONNECTION_ID();
-SELECT thread_id = @def_thread_id as current, variable_value
- FROM performance_schema.variables_by_thread
- WHERE variable_name = "time_zone";