summaryrefslogtreecommitdiff
path: root/mysql-test/t/sql_safe_updates_basic.test
diff options
context:
space:
mode:
authorHorst Hunger <horst@mysql.com>2008-12-19 16:03:32 +0100
committerHorst Hunger <horst@mysql.com>2008-12-19 16:03:32 +0100
commit357b5009409ed6666bf1df48a80d76cd42a482c8 (patch)
tree7a2fa9b404ffb20d1572c51a0bca7ecc64992310 /mysql-test/t/sql_safe_updates_basic.test
parentba816c14a9bc8012759da9d58f858f1e73bec708 (diff)
downloadmariadb-git-357b5009409ed6666bf1df48a80d76cd42a482c8.tar.gz
WL#4681: Took the system variable tests out of the main test suite, put them into "sys_vars", updated some reult files and tests.
Diffstat (limited to 'mysql-test/t/sql_safe_updates_basic.test')
-rw-r--r--mysql-test/t/sql_safe_updates_basic.test175
1 files changed, 0 insertions, 175 deletions
diff --git a/mysql-test/t/sql_safe_updates_basic.test b/mysql-test/t/sql_safe_updates_basic.test
deleted file mode 100644
index 489b42949a0..00000000000
--- a/mysql-test/t/sql_safe_updates_basic.test
+++ /dev/null
@@ -1,175 +0,0 @@
-############## mysql-test\t\sql_safe_updates_basic.test #######################
-# #
-# Variable Name: sql_safe_updates #
-# Scope: SESSION #
-# Access Type: Dynamic #
-# Data Type: boolean #
-# Default Value: #
-# Range: 0,1 #
-# #
-# #
-# Creation Date: 2008-02-07 #
-# Author: Rizwan #
-# #
-# Description: Test Cases of Dynamic System Variable sql_safe_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_safe_updates TESTS #
-########################################################################
-
-
-################################################################################
-# Saving initial value of sql_safe_updates in a temporary variable #
-################################################################################
-
-SET @session_start_value = @@session.sql_safe_updates;
-SELECT @session_start_value;
-
---echo '#--------------------FN_DYNVARS_163_01------------------------#'
-########################################################################
-# Display the DEFAULT value of sql_safe_updates #
-########################################################################
-
-SET @@session.sql_safe_updates = 0;
-SET @@session.sql_safe_updates = DEFAULT;
-SELECT @@session.sql_safe_updates;
-
-SET @@session.sql_safe_updates = 1;
-SET @@session.sql_safe_updates = DEFAULT;
-SELECT @@session.sql_safe_updates;
-
-
---echo '#---------------------FN_DYNVARS_163_02-------------------------#'
-#############################################################################
-# Check if sql_safe_updates can be accessed with and without @@ sign #
-#############################################################################
-
-SET sql_safe_updates = 1;
-SELECT @@sql_safe_updates;
-
---Error ER_UNKNOWN_TABLE
-SELECT session.sql_safe_updates;
-
---Error ER_UNKNOWN_TABLE
-SELECT local.sql_safe_updates;
-
-SET session sql_safe_updates = 0;
-SELECT @@session.sql_safe_updates;
-
-
---echo '#--------------------FN_DYNVARS_163_03------------------------#'
-########################################################################
-# change the value of sql_safe_updates to a valid value #
-########################################################################
-
-SET @@session.sql_safe_updates = 0;
-SELECT @@session.sql_safe_updates;
-SET @@session.sql_safe_updates = 1;
-SELECT @@session.sql_safe_updates;
-
-
---echo '#--------------------FN_DYNVARS_163_04-------------------------#'
-###########################################################################
-# Change the value of sql_safe_updates to invalid value #
-###########################################################################
-
---Error ER_WRONG_VALUE_FOR_VAR
-SET @@session.sql_safe_updates = -1;
---Error ER_WRONG_VALUE_FOR_VAR
-SET @@session.sql_safe_updates = 2;
---Error ER_WRONG_VALUE_FOR_VAR
-SET @@session.sql_safe_updates = "T";
---Error ER_WRONG_VALUE_FOR_VAR
-SET @@session.sql_safe_updates = "Y";
---Error ER_WRONG_VALUE_FOR_VAR
-SET @@session.sql_safe_updates = TRÜE;
---Error ER_WRONG_VALUE_FOR_VAR
-SET @@session.sql_safe_updates = ÕN;
-
-SET @@session.sql_safe_updates = OF;
-SELECT @@session.sql_safe_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_safe_updates = ÓFF;
---Error ER_WRONG_VALUE_FOR_VAR
-SET @@session.sql_safe_updates = '¹';
---Error ER_WRONG_VALUE_FOR_VAR
-SET @@session.sql_safe_updates = NO;
-
-
---echo '#-------------------FN_DYNVARS_163_05----------------------------#'
-###########################################################################
-# Test if accessing global sql_safe_updates gives error #
-###########################################################################
-
---Error ER_LOCAL_VARIABLE
-SET @@global.sql_safe_updates = 0;
-
---Error ER_INCORRECT_GLOBAL_LOCAL_VAR
-SELECT @@global.sql_safe_updates;
-
---echo '#----------------------FN_DYNVARS_163_06------------------------#'
-#########################################################################
-# Check if the value in GLOBAL Table contains variable value #
-#########################################################################
-
-SELECT count(VARIABLE_VALUE)
-FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
-WHERE VARIABLE_NAME='sql_safe_updates';
-
---echo '#----------------------FN_DYNVARS_163_07------------------------#'
-#########################################################################
-# Check if the value in GLOBAL Table matches value in variable #
-#########################################################################
-
-SELECT @@session.sql_safe_updates = VARIABLE_VALUE
-FROM INFORMATION_SCHEMA.SESSION_VARIABLES
-WHERE VARIABLE_NAME='sql_safe_updates';
-SELECT @@session.sql_safe_updates;
-SELECT VARIABLE_VALUE
-FROM INFORMATION_SCHEMA.SESSION_VARIABLES
-WHERE VARIABLE_NAME='sql_safe_updates';
-
---echo '#---------------------FN_DYNVARS_163_08-------------------------#'
-###################################################################
-# Check if ON and OFF values can be used on variable #
-###################################################################
-
-SET @@session.sql_safe_updates = OFF;
-SELECT @@session.sql_safe_updates;
-SET @@session.sql_safe_updates = ON;
-SELECT @@session.sql_safe_updates;
-
---echo '#---------------------FN_DYNVARS_163_09----------------------#'
-###################################################################
-# Check if TRUE and FALSE values can be used on variable #
-###################################################################
-
-SET @@session.sql_safe_updates = TRUE;
-SELECT @@session.sql_safe_updates;
-SET @@session.sql_safe_updates = FALSE;
-SELECT @@session.sql_safe_updates;
-
-##############################
-# Restore initial value #
-##############################
-
-SET @@session.sql_safe_updates = @session_start_value;
-SELECT @@session.sql_safe_updates;
-
-###############################################################
-# END OF sql_safe_updates TESTS #
-###############################################################