mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests.
This commit is contained in:
@ -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;
|
|||||||
###############################################
|
###############################################
|
||||||
|
|
||||||
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;
|
|||||||
##############################
|
##############################
|
||||||
|
|
||||||
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 @@
|
|||||||
# * 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;
|
|||||||
# 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-------------------------#'
|
||||||
#############################################################################
|
#############################################################################
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user