1 ############## mysql-test\t\log_warnings_basic.test ###############
3 # Variable Name: log_warnings #
5 # Access Type: Dynamic #
11 # Creation Date: 2008-02-07 #
14 # Description: Test Cases of Dynamic System Variable log_warnings #
15 # that checks the behavior of this variable in the following ways#
17 # * Valid & Invalid values #
18 # * Scope & Access method #
21 # Reference: http://dev.mysql.com/doc/refman/5.1/en/ #
22 # server-system-variables.html #
24 ###############################################################################
26 --source include/load_sysvars.inc
28 ############################################################
29 # START OF log_warnings TESTS #
30 ############################################################
33 #############################################################
34 # Save initial value #
35 #############################################################
37 SET @start_global_value = @@global.log_warnings;
38 SELECT @start_global_value;
41 --echo
'#--------------------FN_DYNVARS_067_01-------------------------#'
42 ########################################################################
43 # Display the DEFAULT value of log_warnings #
44 ########################################################################
46 SET @@global.log_warnings = 100;
47 SET @@global.log_warnings = DEFAULT;
48 SELECT @@global.log_warnings;
51 --echo
'#--------------------FN_DYNVARS_067_02-------------------------#'
52 ########################################################################
53 # Check the DEFAULT value of log_warnings #
54 ########################################################################
56 SET @@global.log_warnings = DEFAULT;
57 SELECT @@global.log_warnings = 1;
60 --echo
'#--------------------FN_DYNVARS_067_03-------------------------#'
61 ######################################################################
62 # Change the value of log_warnings to a valid value for GLOBAL Scope #
63 ######################################################################
65 SET @@global.log_warnings = 0;
66 SELECT @@global.log_warnings;
67 SET @@global.log_warnings = 1;
68 SELECT @@global.log_warnings;
69 SET @@global.log_warnings = 60020;
70 SELECT @@global.log_warnings;
71 SET @@global.log_warnings = 65535;
72 SELECT @@global.log_warnings;
73 SET @@global.log_warnings = 65536;
74 SELECT @@global.log_warnings;
77 --echo
'#------------------FN_DYNVARS_067_04-----------------------#'
78 ########################################################
79 # Change the value of log_warnings to an invalid value #
80 ########################################################
82 SET @@global.log_warnings = 100000000000;
83 SELECT @@global.log_warnings;
84 SET @@global.log_warnings = -1024;
85 SELECT @@global.log_warnings;
86 --Error ER_WRONG_TYPE_FOR_VAR
87 SET @@global.log_warnings = 65530.34;
88 SELECT @@global.log_warnings;
89 --Error ER_WRONG_TYPE_FOR_VAR
90 SET @@global.log_warnings =
test;
91 SELECT @@global.log_warnings;
94 --echo
'#------------------FN_DYNVARS_067_05-----------------------#'
95 ####################################################################
96 # Check if the value in GLOBAL Table matches value in variable #
97 ####################################################################
99 SELECT @@global.log_warnings = VARIABLE_VALUE
100 FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
101 WHERE VARIABLE_NAME=
'log_warnings';
104 --echo
'#------------------FN_DYNVARS_067_06-----------------------#'
105 ####################################################################
106 # Check if TRUE and FALSE values can be used on variable #
107 ####################################################################
109 SET @@global.log_warnings = TRUE;
110 SELECT @@global.log_warnings;
111 SET @@global.log_warnings = FALSE;
112 SELECT @@global.log_warnings;
115 --echo
'#---------------------FN_DYNVARS_067_07----------------------#'
116 #################################################################################
117 # Check if accessing variable with and without GLOBAL point to same variable #
118 #################################################################################
120 SET @@global.log_warnings = 10;
121 SELECT @@log_warnings = @@global.log_warnings;
124 ####################################
125 # Restore initial value #
126 ####################################
128 SET @@global.log_warnings = @start_global_value;
129 SELECT @@global.log_warnings;
132 #############################################################
133 # END OF log_warnings TESTS #
134 #############################################################