mariadb/mysql-test/t/sql_low_priority_updates_basic.test
unknown b00c536378 System variable tests delivered by Folio3 (see WL4288).
BitKeeper/etc/ignore:
  Added mysql-test/linux_sys_vars.inc mysql-test/load_sysvars.inc mysql-test/windows_sys_vars.inc to the ignore list
2008-04-10 15:14:28 +02:00

233 lines
9.7 KiB
Text
Raw Blame History

############## mysql-test\t\sql_low_priority_updates_basic.test ###############
# #
# Variable Name: sql_low_priority_updates #
# Scope: GLOBAL | SESSION #
# Access Type: Dynamic #
# Data Type: boolean #
# Default Value: #
# Valid Values: 0,1 #
# #
# #
# Creation Date: 2008-02-07 #
# Author: Rizwan #
# #
# Description: Test Cases of Dynamic System Variable sql_low_priority_updates #
# that checks the behavior of this variable in the following ways#
# * Default Value #
# * Valid & Invalid values #
# * Scope & Access method #
# * Data Integrity #
# #
# Reference: http://dev.mysql.com/doc/refman/5.1/en/ #
# server-system-variables.html #
# #
###############################################################################
--source include/load_sysvars.inc
########################################################################
# START OF sql_low_priority_updates TESTS #
########################################################################
###############################################################################
# Saving initial value of sql_low_priority_updates in a temporary variable #
###############################################################################
SET @session_start_value = @@session.sql_low_priority_updates;
SELECT @session_start_value;
SET @global_start_value = @@global.sql_low_priority_updates;
SELECT @global_start_value;
--echo '#--------------------FN_DYNVARS_159_01------------------------#'
########################################################################
# Display the DEFAULT value of sql_low_priority_updates #
########################################################################
SET @@session.sql_low_priority_updates = 1;
SET @@session.sql_low_priority_updates = DEFAULT;
SELECT @@session.sql_low_priority_updates;
SET @@global.sql_low_priority_updates = 1;
--Error ER_NO_DEFAULT
SET @@global.sql_low_priority_updates = DEFAULT;
--echo 'Bug: DEFAULT value is only associated with session'
--echo '#---------------------FN_DYNVARS_159_02-------------------------#'
####################################################################################
# Check if sql_low_priority_updates can be accessed with and without @@ sign #
####################################################################################
SET sql_low_priority_updates = 1;
SELECT @@sql_low_priority_updates;
--Error ER_UNKNOWN_TABLE
SELECT session.sql_low_priority_updates;
--Error ER_UNKNOWN_TABLE
SELECT local.sql_low_priority_updates;
--Error ER_UNKNOWN_TABLE
SELECT global.sql_low_priority_updates;
#using another syntax for accessing system variables
SET session sql_low_priority_updates = 0;
SELECT @@session.sql_low_priority_updates;
SET global sql_low_priority_updates = 0;
SELECT @@global.sql_low_priority_updates;
--echo '#--------------------FN_DYNVARS_159_03------------------------#'
##########################################################################
# change the value of sql_low_priority_updates to a valid value #
##########################################################################
# for session
SET @@session.sql_low_priority_updates = 0;
SELECT @@session.sql_low_priority_updates;
SET @@session.sql_low_priority_updates = 1;
SELECT @@session.sql_low_priority_updates;
# for global
SET @@global.sql_low_priority_updates = 0;
SELECT @@global.sql_low_priority_updates;
SET @@global.sql_low_priority_updates = 1;
SELECT @@global.sql_low_priority_updates;
--echo '#--------------------FN_DYNVARS_159_04-------------------------#'
###########################################################################
# Change the value of sql_low_priority_updates to invalid value #
###########################################################################
# for session
--Error ER_WRONG_VALUE_FOR_VAR
SET @@session.sql_low_priority_updates = -1;
--Error ER_WRONG_VALUE_FOR_VAR
SET @@session.sql_low_priority_updates = 1.6;
--Error ER_WRONG_VALUE_FOR_VAR
SET @@session.sql_low_priority_updates = "T";
--Error ER_WRONG_VALUE_FOR_VAR
SET @@session.sql_low_priority_updates = "Y";
--Error ER_WRONG_VALUE_FOR_VAR
SET @@session.sql_low_priority_updates = TR<54>E;
--Error ER_WRONG_VALUE_FOR_VAR
SET @@session.sql_low_priority_updates = <20>N;
SET @@session.sql_low_priority_updates = OF;
SELECT @@session.sql_low_priority_updates;
--echo 'Bug# 34828: OF is taken as OFF and a value of 0 is set.'
--Error ER_WRONG_VALUE_FOR_VAR
SET @@session.sql_low_priority_updates = <20>FF;
# for global
--Error ER_WRONG_VALUE_FOR_VAR
SET @@global.sql_low_priority_updates = -1;
--Error ER_WRONG_VALUE_FOR_VAR
SET @@global.sql_low_priority_updates = 2;
--Error ER_WRONG_VALUE_FOR_VAR
SET @@global.sql_low_priority_updates = "T";
--Error ER_WRONG_VALUE_FOR_VAR
SET @@global.sql_low_priority_updates = "Y";
--Error ER_WRONG_VALUE_FOR_VAR
SET @@global.sql_low_priority_updates = TR<54>E;
--Error ER_WRONG_VALUE_FOR_VAR
SET @@global.sql_low_priority_updates = <20>N;
SET @@global.sql_low_priority_updates = OF;
SELECT @@global.sql_low_priority_updates;
--echo 'Bug# 34828: OF is taken as OFF and a value of 0 is set.'
--Error ER_WRONG_VALUE_FOR_VAR
SET @@global.sql_low_priority_updates = <20>FF;
--echo '#-------------------FN_DYNVARS_159_05----------------------------#'
###########################################################################
# Test if changing global variable effects session and vice versa #
###########################################################################
SET @@global.sql_low_priority_updates = 0;
SET @@session.sql_low_priority_updates = 1;
SELECT @@global.sql_low_priority_updates AS res_is_0;
SET @@global.sql_low_priority_updates = 0;
SELECT @@session.sql_low_priority_updates AS res_is_1;
--echo '#----------------------FN_DYNVARS_159_06------------------------#'
#########################################################################
# Check if the value in GLOBAL Table matches value in variable #
#########################################################################
SELECT @@global.sql_low_priority_updates = VARIABLE_VALUE
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME='sql_low_priority_updates';
SELECT @@global.sql_low_priority_updates;
SELECT VARIABLE_VALUE
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
WHERE VARIABLE_NAME='sql_low_priority_updates';
--echo '#----------------------FN_DYNVARS_159_07------------------------#'
#########################################################################
# Check if the value in SESSION Table matches value in variable #
#########################################################################
SELECT @@session.sql_low_priority_updates = VARIABLE_VALUE
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
WHERE VARIABLE_NAME='sql_low_priority_updates';
SELECT @@session.sql_low_priority_updates;
SELECT VARIABLE_VALUE
FROM INFORMATION_SCHEMA.SESSION_VARIABLES
WHERE VARIABLE_NAME='sql_low_priority_updates';
--echo '#---------------------FN_DYNVARS_159_08-------------------------#'
###################################################################
# Check if ON and OFF values can be used on variable #
###################################################################
SET @@session.sql_low_priority_updates = OFF;
SELECT @@session.sql_low_priority_updates;
SET @@session.sql_low_priority_updates = ON;
SELECT @@session.sql_low_priority_updates;
SET @@global.sql_low_priority_updates = OFF;
SELECT @@global.sql_low_priority_updates;
SET @@global.sql_low_priority_updates = ON;
SELECT @@global.sql_low_priority_updates;
--echo '#---------------------FN_DYNVARS_159_09----------------------#'
###################################################################
# Check if TRUE and FALSE values can be used on variable #
###################################################################
SET @@session.sql_low_priority_updates = TRUE;
SELECT @@session.sql_low_priority_updates;
SET @@session.sql_low_priority_updates = FALSE;
SELECT @@session.sql_low_priority_updates;
SET @@global.sql_low_priority_updates = TRUE;
SELECT @@global.sql_low_priority_updates;
SET @@global.sql_low_priority_updates = FALSE;
SELECT @@global.sql_low_priority_updates;
##############################
# Restore initial value #
##############################
SET @@session.sql_low_priority_updates = @session_start_value;
SELECT @@session.sql_low_priority_updates;
SET @@global.sql_low_priority_updates = @global_start_value;
SELECT @@global.sql_low_priority_updates;
###########################################################
# END OF sql_low_priority_updates TESTS #
###########################################################