403Webshell
Server IP : 104.21.38.3  /  Your IP : 104.23.175.238
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 :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/server/mysql/src/mysql-test/suite/sys_vars/t/sql_slave_skip_counter_basic.test
############## mysql-test\t\sql_slave_skip_counter_basic.test #################
#                                                                             #
# Variable Name: sql_slave_skip_counter                                       #
# Scope: GLOBAL                                                               #
# Access Type: Dynamic                                                        #
# Data Type: numeric                                                          #
# Default Value:                                                              #
# Range:                                                                      #
#                                                                             #
#                                                                             #
# Creation Date: 2008-02-07                                                   #
# Author:  Rizwan                                                             #
#                                                                             #
# Description: Test Cases of Dynamic System Variable sql_slave_skip_counter   #
#              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/not_embedded.inc
--source include/load_sysvars.inc

################################################################
#           START OF sql_slave_skip_counter TESTS              #
################################################################

--echo '#--------------------FN_DYNVARS_165_01-------------------------#'
#############################################################
#                 Try accessing initial value               #
#############################################################

SET @start_global_value = @@global.sql_slave_skip_counter;
SELECT @@global.sql_slave_skip_counter;

--echo '#--------------------FN_DYNVARS_165_02-------------------------#'
###################################################################
#            Try setting DEFAULT value to variable                #
###################################################################

SET @@global.sql_slave_skip_counter = DEFAULT;
SELECT @@global.sql_slave_skip_counter;
--echo '#--------------------FN_DYNVARS_165_03-------------------------#'
###################################################################
#            Try setting any valid value to variable              #
###################################################################

SET @@global.sql_slave_skip_counter = 0;
SET @@global.sql_slave_skip_counter = 5;
SET @@global.sql_slave_skip_counter = 1024;
SET @@global.sql_slave_skip_counter = 2147483648;
SET @@global.sql_slave_skip_counter = 2147483648*2;
SET @@global.sql_slave_skip_counter = 2147483648*2-1;
SET @@global.sql_slave_skip_counter = 18446744065119617025;

--echo '#--------------------FN_DYNVARS_165_03-------------------------#'
###################################################################
#            Checking invalid value for variable                  #
###################################################################

--Error ER_WRONG_TYPE_FOR_VAR
SET @@global.sql_slave_skip_counter = '5';
--Error ER_WRONG_TYPE_FOR_VAR
SET @@global.sql_slave_skip_counter = 5.5;
--Error ER_WRONG_TYPE_FOR_VAR
SET @@global.sql_slave_skip_counter = -.5;
--Error ER_WRONG_TYPE_FOR_VAR
SET @@global.sql_slave_skip_counter = -.0;


--echo '#--------------------FN_DYNVARS_165_03-------------------------#'
###################################################################
#            Try retrieving value from Information Schema         #
###################################################################

SET @@global.sql_slave_skip_counter = 1024;
--disable_warnings
SELECT VARIABLE_VALUE 
FROM INFORMATION_SCHEMA.SESSION_VARIABLES 
WHERE VARIABLE_NAME='sql_slave_skip_counter';
--enable_warnings

--echo '#--------------------FN_DYNVARS_165_03-------------------------#'
###################################################################
#         Checking if variable is accessible with session scope   #
###################################################################

--Error ER_GLOBAL_VARIABLE
SET @@sql_slave_skip_counter = 10;
--Error ER_GLOBAL_VARIABLE
SET @@session.sql_slave_skip_counter = 12;
--Error ER_GLOBAL_VARIABLE
SET @@local.sql_slave_skip_counter = 13;

SET @@global.sql_slave_skip_counter = 0;

#
# Verify that it settable when gtid_mode!=on
#

SET @@global.enforce_gtid_consistency = on;
SET @@global.gtid_mode = off_permissive;
set global sql_slave_skip_counter= 1;
set global sql_slave_skip_counter= 0;

SET @@global.gtid_mode = on_permissive;
set global sql_slave_skip_counter= 1;
set global sql_slave_skip_counter= 0;

SET @@global.gtid_mode = on;
--error ER_SQL_SLAVE_SKIP_COUNTER_NOT_SETTABLE_IN_GTID_MODE
set global sql_slave_skip_counter= 1;
select @@global.sql_slave_skip_counter;
--error ER_SQL_SLAVE_SKIP_COUNTER_NOT_SETTABLE_IN_GTID_MODE
set global sql_slave_skip_counter= 0;
select @@global.sql_slave_skip_counter;

SET @@global.gtid_mode = on_permissive;
SET @@global.gtid_mode = off_permissive;
SET @@global.gtid_mode = off;
SET @@global.enforce_gtid_consistency = off;

########################################################
#              END OF sql_slave_skip_counter TESTS     #
########################################################

Youez - 2016 - github.com/yon3zu
LinuXploit