Server IP : 104.21.38.3 / Your IP : 172.70.189.21 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 : |
################################################################################ # gtid_executed_compression_period # # It is a global variable only and can be set dynamically. # It has UINT type and accepts numbers from 0 to 4294967295. Default value is 1000. # # This test verifies the variable can be set, selected and showed correctly. ################################################################################ SET @start_global_value = @@global.gtid_executed_compression_period; SELECT @start_global_value; --echo # --echo # It exists as a global variable --echo # SELECT @@GLOBAL.gtid_executed_compression_period; SHOW GLOBAL VARIABLES LIKE 'gtid_executed_compression_period'; --disable_warnings SELECT * FROM INFORMATION_SCHEMA.GLOBAL_VARIABLES WHERE VARIABLE_NAME = 'gtid_executed_compression_period'; --enable_warnings --echo # --echo # It is not a session variable --echo # --error ER_INCORRECT_GLOBAL_LOCAL_VAR SELECT @@SESSION.gtid_executed_compression_period; --error ER_GLOBAL_VARIABLE SET SESSION gtid_executed_compression_period= 2; SHOW SESSION VARIABLES LIKE 'gtid_executed_compression_period'; SHOW SESSION VARIABLES LIKE 'gtid_executed_compression_period'; --disable_warnings SELECT * FROM INFORMATION_SCHEMA.SESSION_VARIABLES WHERE VARIABLE_NAME ='gtid_executed_compression_period'; --enable_warnings --echo # --echo # Verify that it's writable --echo # SET GLOBAL gtid_executed_compression_period= 0; SELECT @@GLOBAL.gtid_executed_compression_period; SET GLOBAL gtid_executed_compression_period= 5000; SELECT @@GLOBAL.gtid_executed_compression_period; SET GLOBAL gtid_executed_compression_period= 4294967295; SELECT @@GLOBAL.gtid_executed_compression_period; --echo # --echo # Verify that it could not bet set with invalid values --echo # # Allowed value range: (0, UINT_MAX32) # Value lower than allowed range SET GLOBAL gtid_executed_compression_period= -1; SELECT @@GLOBAL.gtid_executed_compression_period; # Value higher than allowed range SET GLOBAL gtid_executed_compression_period= 4294967296; SELECT @@GLOBAL.gtid_executed_compression_period; # Incompatible value types --error ER_WRONG_TYPE_FOR_VAR set global gtid_executed_compression_period= 1.1; --error ER_WRONG_TYPE_FOR_VAR set global gtid_executed_compression_period= 1e1; --error ER_WRONG_TYPE_FOR_VAR set global gtid_executed_compression_period= "foobar"; SET @@global.gtid_executed_compression_period= @start_global_value; SELECT @@global.gtid_executed_compression_period;