2008-04-10 15:14:28 +02:00
|
|
|
################### mysql-test\t\general_log_file_basic.test ###################
|
|
|
|
# #
|
|
|
|
# Variable Name: general_log_file #
|
|
|
|
# Scope: GLOBAL #
|
|
|
|
# Access Type: Dynamic #
|
|
|
|
# Data Type: Filename #
|
|
|
|
# Default Value: host_name.log #
|
|
|
|
# Valid Values: #
|
|
|
|
# #
|
|
|
|
# #
|
|
|
|
# Creation Date: 2008-03-16 #
|
|
|
|
# Author: Salman Rawala #
|
2008-09-10 12:50:39 +02:00
|
|
|
# Modified: HHunger 2008-09-11 Set system variable back to the start value #
|
2008-04-10 15:14:28 +02:00
|
|
|
# #
|
|
|
|
# Description: Test Cases of Dynamic System Variable "general_log_file" #
|
|
|
|
# that checks behavior of this variable in the following ways #
|
|
|
|
# * Default Value #
|
|
|
|
# * Valid & Invalid values #
|
|
|
|
# * Scope & Access method #
|
|
|
|
# * Data Integrity #
|
|
|
|
# #
|
2008-09-10 12:50:39 +02:00
|
|
|
# Reference: #
|
|
|
|
# http://dev.mysql.com/doc/refman/5.1/en/server-system-variables.html #
|
2008-04-10 15:14:28 +02:00
|
|
|
# #
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
--source include/load_sysvars.inc
|
|
|
|
|
|
|
|
###########################################################
|
|
|
|
# START OF general_log_file TESTS #
|
|
|
|
###########################################################
|
|
|
|
|
|
|
|
|
|
|
|
########################################################################
|
|
|
|
# Saving initial value of general_log_file in a temporary variable #
|
|
|
|
########################################################################
|
|
|
|
|
|
|
|
SET @start_value = @@global.general_log_file;
|
|
|
|
SELECT @start_value;
|
|
|
|
|
|
|
|
|
|
|
|
--echo '#---------------------FN_DYNVARS_004_01-------------------------#'
|
|
|
|
###############################################
|
|
|
|
# Verify default value of variable #
|
|
|
|
###############################################
|
|
|
|
|
|
|
|
SET @@global.general_log_file = DEFAULT;
|
|
|
|
SELECT RIGHT(@@global.general_log_file,10) AS log_file;
|
|
|
|
|
|
|
|
|
|
|
|
--echo '#--------------------FN_DYNVARS_004_02------------------------#'
|
|
|
|
#######################################################################
|
|
|
|
# Change the value of general_log_file to a invalid value #
|
|
|
|
#######################################################################
|
|
|
|
|
2008-05-20 20:23:58 +02:00
|
|
|
# Assumed text if no quotes or numbers.
|
2008-04-10 15:14:28 +02:00
|
|
|
SET @@global.general_log_file = mytest.log;
|
2008-05-20 20:23:58 +02:00
|
|
|
--error ER_WRONG_TYPE_FOR_VAR
|
|
|
|
SET @@global.general_log_file = 12;
|
|
|
|
|
2008-04-10 15:14:28 +02:00
|
|
|
|
|
|
|
--echo '#----------------------FN_DYNVARS_004_03------------------------#'
|
|
|
|
##############################################################################
|
|
|
|
# Check if the value in GLOBAL Tables matches values in variable #
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
SELECT @@global.general_log_file = VARIABLE_VALUE
|
|
|
|
FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
|
|
WHERE VARIABLE_NAME='general_log_file';
|
|
|
|
|
2008-09-10 12:50:39 +02:00
|
|
|
SET @@global.general_log_file= @start_value;
|
2008-04-10 15:14:28 +02:00
|
|
|
|
|
|
|
#####################################################
|
|
|
|
# END OF general_log_file TESTS #
|
|
|
|
#####################################################
|
2008-09-10 12:50:39 +02:00
|
|
|
|