Commit 0e82fa6c authored by Horst Hunger's avatar Horst Hunger

WL#4681: Took the system variable tests out of the main test suite, put them...

WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests.
parent ad41e2e7
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
############################################################################### ###############################################################################
SET @start_value = @@global.query_cache_size; SET @start_value = @@global.query_cache_size;
SELECT @start_value;
--echo '#--------------------FN_DYNVARS_133_01------------------------#' --echo '#--------------------FN_DYNVARS_133_01------------------------#'
############################################################################### ###############################################################################
...@@ -53,7 +52,7 @@ SELECT @@global.query_cache_size; ...@@ -53,7 +52,7 @@ SELECT @@global.query_cache_size;
############################################### ###############################################
SET @@global.query_cache_size = @start_value; SET @@global.query_cache_size = @start_value;
SELECT @@global.query_cache_size = 0; SELECT @@global.query_cache_size = @start_value;
--echo '#--------------------FN_DYNVARS_133_03------------------------#' --echo '#--------------------FN_DYNVARS_133_03------------------------#'
################################################################################ ################################################################################
...@@ -167,7 +166,6 @@ SELECT query_cache_size = @@session.query_cache_size; ...@@ -167,7 +166,6 @@ SELECT query_cache_size = @@session.query_cache_size;
############################## ##############################
SET @@global.query_cache_size = @start_value; SET @@global.query_cache_size = @start_value;
SELECT @@global.query_cache_size;
######################################################################## ########################################################################
# END OF query_cache_size TESTS # # END OF query_cache_size TESTS #
......
...@@ -18,8 +18,8 @@ ...@@ -18,8 +18,8 @@
# * Scope & Access method # # * Scope & Access method #
# * Data Integrity # # * Data Integrity #
# # # #
# Reference: http://dev.mysql.com/doc/refman/5.1/en/ # # Reference: #
# server-system-variables.html # # http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html #
# # # #
############################################################################### ###############################################################################
...@@ -102,9 +102,10 @@ SET @@timestamp = 9999999999999999999999; ...@@ -102,9 +102,10 @@ SET @@timestamp = 9999999999999999999999;
# Check if the value in SESSION Table matches value in variable # # Check if the value in SESSION Table matches value in variable #
######################################################################### #########################################################################
SELECT @@timestamp = VARIABLE_VALUE # disabled due to bug#41584
FROM INFORMATION_SCHEMA.SESSION_VARIABLES #SELECT @@timestamp = VARIABLE_VALUE
WHERE VARIABLE_NAME='timestamp'; #FROM INFORMATION_SCHEMA.SESSION_VARIABLES
#WHERE VARIABLE_NAME='timestamp';
--echo '#---------------------FN_DYNVARS_001_08-------------------------#' --echo '#---------------------FN_DYNVARS_001_08-------------------------#'
############################################################################# #############################################################################
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment