Server IP : 104.21.38.3 / Your IP : 162.158.106.97 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/mysql-test/suite/sys_vars/t/ |
Upload File : |
################### mysql-test\t\slow_query_log_file_basic.test ################ # # # Variable Name: slow_query_log_file # # Scope: GLOBAL # # Access Type: Dynamic # # Data Type: Filename # # Default Value: host_name-slow.log # # Valid Values: # # # # # # Creation Date: 2008-03-16 # # Author: Salman Rawala # # Modified: HHunger 2008-09-11 set system var back to start value # # # # Description: Test Cases of Dynamic System Variable "slow_query_log_file" # # that checks 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 slow_query_log_file TESTS # ########################################################### ########################################################################### # Saving initial value of slow_query_log_file in a temporary variable # ########################################################################### SET @start_value = @@global.slow_query_log_file; --echo '#---------------------FN_DYNVARS_004_01-------------------------#' ############################################### # Verify default value of variable # ############################################### SET @@global.slow_query_log_file = DEFAULT; SET @a=concat(left(@@hostname, instr(concat(@@hostname, '.'), '.')-1), '-slow.log'); SELECT RIGHT(@@global.slow_query_log_file, length(@a)) = @a; --echo '#--------------------FN_DYNVARS_004_02------------------------#' ####################################################################### # Change the value of slow_query_log_file to a invalid value # ####################################################################### --error ER_WRONG_TYPE_FOR_VAR SET @@global.slow_query_log_file = mytest.log; --error ER_WRONG_TYPE_FOR_VAR SET @@global.slow_query_log_file = 12; --echo '#----------------------FN_DYNVARS_004_03------------------------#' ############################################################################## # Check if the value in GLOBAL Tables matches values in variable # ############################################################################## --disable_warnings SELECT @@global.slow_query_log_file = VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES WHERE VARIABLE_NAME='slow_query_log_file'; --enable_warnings SET @@global.slow_query_log_file= @start_value; ##################################################### # END OF slow_query_log_file TESTS # #####################################################