1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +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:
Horst Hunger
2008-12-19 16:03:32 +01:00
parent ba816c14a9
commit 357b500940
520 changed files with 30 additions and 51 deletions

View File

@ -36,7 +36,6 @@
###############################################################################
SET @start_value = @@global.query_cache_size;
SELECT @start_value;
--echo '#--------------------FN_DYNVARS_133_01------------------------#'
###############################################################################
@ -53,7 +52,7 @@ SELECT @@global.query_cache_size;
###############################################
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------------------------#'
################################################################################
@ -167,7 +166,6 @@ SELECT query_cache_size = @@session.query_cache_size;
##############################
SET @@global.query_cache_size = @start_value;
SELECT @@global.query_cache_size;
########################################################################
# END OF query_cache_size TESTS #

View File

@ -18,8 +18,8 @@
# * Scope & Access method #
# * Data Integrity #
# #
# Reference: http://dev.mysql.com/doc/refman/5.1/en/ #
# server-system-variables.html #
# Reference: #
# 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 #
#########################################################################
SELECT @@timestamp = VARIABLE_VALUE
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
WHERE VARIABLE_NAME='timestamp';
# disabled due to bug#41584
#SELECT @@timestamp = VARIABLE_VALUE
#FROM INFORMATION_SCHEMA.SESSION_VARIABLES
#WHERE VARIABLE_NAME='timestamp';
--echo '#---------------------FN_DYNVARS_001_08-------------------------#'
#############################################################################

Some files were not shown because too many files have changed in this diff Show More