Server IP : 104.21.38.3 / Your IP : 162.158.163.248 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/r/ |
Upload File : |
'#--------------------FN_DYNVARS_165_01-------------------------#' SET @start_global_value = @@global.sql_slave_skip_counter; SELECT @@global.sql_slave_skip_counter; @@global.sql_slave_skip_counter 0 '#--------------------FN_DYNVARS_165_02-------------------------#' SET @@global.sql_slave_skip_counter = DEFAULT; SELECT @@global.sql_slave_skip_counter; @@global.sql_slave_skip_counter 0 '#--------------------FN_DYNVARS_165_03-------------------------#' 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; Warnings: Warning 1292 Truncated incorrect sql_slave_skip_counter value: '4294967296' SET @@global.sql_slave_skip_counter = 2147483648*2-1; SET @@global.sql_slave_skip_counter = 18446744065119617025; Warnings: Warning 1292 Truncated incorrect sql_slave_skip_counter value: '18446744065119617025' '#--------------------FN_DYNVARS_165_03-------------------------#' SET @@global.sql_slave_skip_counter = '5'; ERROR 42000: Incorrect argument type to variable 'sql_slave_skip_counter' SET @@global.sql_slave_skip_counter = 5.5; ERROR 42000: Incorrect argument type to variable 'sql_slave_skip_counter' SET @@global.sql_slave_skip_counter = -.5; ERROR 42000: Incorrect argument type to variable 'sql_slave_skip_counter' SET @@global.sql_slave_skip_counter = -.0; ERROR 42000: Incorrect argument type to variable 'sql_slave_skip_counter' '#--------------------FN_DYNVARS_165_03-------------------------#' SET @@global.sql_slave_skip_counter = 1024; SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.SESSION_VARIABLES WHERE VARIABLE_NAME='sql_slave_skip_counter'; VARIABLE_VALUE 1024 '#--------------------FN_DYNVARS_165_03-------------------------#' SET @@sql_slave_skip_counter = 10; ERROR HY000: Variable 'sql_slave_skip_counter' is a GLOBAL variable and should be set with SET GLOBAL SET @@session.sql_slave_skip_counter = 12; ERROR HY000: Variable 'sql_slave_skip_counter' is a GLOBAL variable and should be set with SET GLOBAL SET @@local.sql_slave_skip_counter = 13; ERROR HY000: Variable 'sql_slave_skip_counter' is a GLOBAL variable and should be set with SET GLOBAL SET @@global.sql_slave_skip_counter = 0; 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; set global sql_slave_skip_counter= 1; ERROR HY000: sql_slave_skip_counter can not be set when the server is running with @@GLOBAL.GTID_MODE = ON. Instead, for each transaction that you want to skip, generate an empty transaction with the same GTID as the transaction select @@global.sql_slave_skip_counter; @@global.sql_slave_skip_counter 0 set global sql_slave_skip_counter= 0; ERROR HY000: sql_slave_skip_counter can not be set when the server is running with @@GLOBAL.GTID_MODE = ON. Instead, for each transaction that you want to skip, generate an empty transaction with the same GTID as the transaction select @@global.sql_slave_skip_counter; @@global.sql_slave_skip_counter 0 SET @@global.gtid_mode = on_permissive; SET @@global.gtid_mode = off_permissive; SET @@global.gtid_mode = off; SET @@global.enforce_gtid_consistency = off;