summaryrefslogtreecommitdiff
path: root/mysql-test/suite/perfschema/t/show_misc.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/perfschema/t/show_misc.test')
-rw-r--r--mysql-test/suite/perfschema/t/show_misc.test34
1 files changed, 0 insertions, 34 deletions
diff --git a/mysql-test/suite/perfschema/t/show_misc.test b/mysql-test/suite/perfschema/t/show_misc.test
index 39a6b65b6b5..65241ab1c75 100644
--- a/mysql-test/suite/perfschema/t/show_misc.test
+++ b/mysql-test/suite/perfschema/t/show_misc.test
@@ -2,44 +2,12 @@
--source include/not_embedded.inc
--source include/no_protocol.inc
-select @@global.show_compatibility_56 into @show_compatibility_56_save;
-
---echo ================================================================================
---echo SHOW_COMPATIBILITY_56 = ON
---echo ================================================================================
-set global show_compatibility_56 = on;
-
-select 1;
-SHOW STATUS LIKE 'Last_query_partial_plans';
-select 2;
-SHOW STATUS LIKE 'Last_query_cost';
-
-
---echo
---echo ================================================================================
---echo SHOW_COMPATIBILITY_56 = OFF
---echo ================================================================================
-set global show_compatibility_56 = off;
-
select 1;
SHOW STATUS LIKE 'Last_query_partial_plans';
select 2;
SHOW STATUS LIKE 'Last_query_cost';
-
---echo ================================================================================
---echo SHOW_COMPATIBILITY_56 = ON
---echo ================================================================================
flush status;
-set global show_compatibility_56 = on;
-SHOW STATUS LIKE 'Created_tmp_tables';
-
---echo
---echo ================================================================================
---echo SHOW_COMPATIBILITY_56 = OFF
---echo ================================================================================
-set global show_compatibility_56 = off;
-
SHOW STATUS LIKE 'Created_tmp_tables';
--echo
@@ -94,5 +62,3 @@ SELECT variable_name FROM performance_schema.variables_by_thread
--echo ================================================================================
--echo CLEAN UP
--echo ================================================================================
-set @@global.show_compatibility_56 = @show_compatibility_56_save;
-