diff options
Diffstat (limited to 'mysql-test/t/log_basic.test')
-rw-r--r-- | mysql-test/t/log_basic.test | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/mysql-test/t/log_basic.test b/mysql-test/t/log_basic.test index b9a64f8981b..98e99fa4e4f 100644 --- a/mysql-test/t/log_basic.test +++ b/mysql-test/t/log_basic.test @@ -1,6 +1,6 @@ ###################### mysql-test\t\log_basic.test ############################ # # -# Variable Name: log_basic # +# Variable Name: log_basic # # Scope: GLOBAL # # Access Type: Dynamic # # Data Type: string # @@ -11,15 +11,16 @@ # Creation Date: 2008-02-07 # # Author: Rizwan # # # -# Description: Test Cases of Dynamic System Variable log # -# that checks the behavior of this variable in the following ways# +# Description: # +# Test Cases of Dynamic System Variable log 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 # +# Reference: # +# http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html # # # ############################################################################### @@ -34,6 +35,8 @@ # Accessing variable # ############################################################# +SET @start_log= @@global.log; + SELECT @@global.log AS INIT_VALUE; SELECT @@log AS INIT_VALUE; @@ -47,14 +50,17 @@ SET global general_log = 0; --echo '#--------------------FN_DYNVARS_062_02-------------------------#' -################################################################################### -# Check if the value in GLOBAL Table matches value in variable # -################################################################################### +################################################################################ +# Check if the value in GLOBAL Table matches value in variable # +################################################################################ # We can only access log value from information schema global_variables table -SELECT VARIABLE_VALUE -FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES +SELECT VARIABLE_VALUE +FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES WHERE VARIABLE_NAME='log'; +SET @@global.log= @start_log; + ############################################ # END OF log TESTS # ############################################ + |