summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/query_cache_size_basic_64.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/suite/sys_vars/r/query_cache_size_basic_64.result')
-rw-r--r--mysql-test/suite/sys_vars/r/query_cache_size_basic_64.result10
1 files changed, 2 insertions, 8 deletions
diff --git a/mysql-test/suite/sys_vars/r/query_cache_size_basic_64.result b/mysql-test/suite/sys_vars/r/query_cache_size_basic_64.result
index 0d67eec1ccc..0cc508b169e 100644
--- a/mysql-test/suite/sys_vars/r/query_cache_size_basic_64.result
+++ b/mysql-test/suite/sys_vars/r/query_cache_size_basic_64.result
@@ -1,7 +1,4 @@
SET @start_value = @@global.query_cache_size;
-SELECT @start_value;
-@start_value
-0
'#--------------------FN_DYNVARS_133_01------------------------#'
SET @@global.query_cache_size = 99;
SET @@global.query_cache_size = DEFAULT;
@@ -10,8 +7,8 @@ SELECT @@global.query_cache_size;
0
'#---------------------FN_DYNVARS_133_02-------------------------#'
SET @@global.query_cache_size = @start_value;
-SELECT @@global.query_cache_size = 0;
-@@global.query_cache_size = 0
+SELECT @@global.query_cache_size = @start_value;
+@@global.query_cache_size = @start_value
1
'#--------------------FN_DYNVARS_133_03------------------------#'
SET @@global.query_cache_size = 0;
@@ -129,6 +126,3 @@ ERROR 42S02: Unknown table 'global' in field list
SELECT query_cache_size = @@session.query_cache_size;
ERROR 42S22: Unknown column 'query_cache_size' in 'field list'
SET @@global.query_cache_size = @start_value;
-SELECT @@global.query_cache_size;
-@@global.query_cache_size
-0