Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 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 : OFF Directory : /www/server/mysql/mysql-test/t/ |
Upload File : |
# # Replication is disabled in embedded mode. # --source include/not_embedded.inc # Not GTIDs because it sets slave_sql_skip_counter --source include/not_gtid_enabled.inc # # Checks how replication commands behave when replication if OFF # due to server-id = 0. # # # Commands associated with the SLAVE. # SHOW SLAVE STATUS; --error ER_SLAVE_CONFIGURATION RESET SLAVE; --error ER_SLAVE_CONFIGURATION SHOW RELAYLOG EVENTS; --error ER_SLAVE_CONFIGURATION STOP SLAVE; --error ER_SLAVE_CONFIGURATION START SLAVE; SELECT MASTER_POS_WAIT('non-existent', 0); --error ER_SLAVE_CONFIGURATION CHANGE MASTER TO MASTER_CONNECT_RETRY = 1, MASTER_HEARTBEAT_PERIOD = 1.01; --error 2 --exec $MYSQL_DUMP --compact --master-data=2 test FLUSH LOGS; FLUSH RELAY LOGS; # Commands associated with replication filters --error ER_SLAVE_CONFIGURATION CHANGE REPLICATION FILTER REPLICATE_DO_DB=(db1); --error ER_SLAVE_CONFIGURATION CHANGE REPLICATION FILTER REPLICATE_IGNORE_DB=(db1); --error ER_SLAVE_CONFIGURATION CHANGE REPLICATION FILTER REPLICATE_DO_TABLE=(db1.t1); --error ER_SLAVE_CONFIGURATION CHANGE REPLICATION FILTER REPLICATE_IGNORE_TABLE=(db1.t1); --error ER_SLAVE_CONFIGURATION CHANGE REPLICATION FILTER REPLICATE_WILD_DO_TABLE=('db1.t%'); --error ER_SLAVE_CONFIGURATION CHANGE REPLICATION FILTER REPLICATE_WILD_IGNORE_TABLE=('db1.t%'); --error ER_SLAVE_CONFIGURATION CHANGE REPLICATION FILTER REPLICATE_REWRITE_DB=((db1,db2)); # # Configuration options associated with the SLAVE. # --let $saved= `SELECT @@GLOBAL.master_info_repository` SET @@GLOBAL.master_info_repository= "TABLE"; --disable_query_log --eval SET @@GLOBAL.master_info_repository= "$saved" --enable_query_log --let $saved= `SELECT @@GLOBAL.relay_log_info_repository` SET @@GLOBAL.relay_log_info_repository= "TABLE"; --disable_query_log --eval SET @@GLOBAL.relay_log_info_repository= "$saved" --enable_query_log --let $saved= `SELECT @@GLOBAL.max_relay_log_size` SET @@GLOBAL.max_relay_log_size= 536870912; --eval SET @@GLOBAL.max_relay_log_size= $saved --let $saved= `SELECT @@GLOBAL.slave_net_timeout` SET @@GLOBAL.slave_net_timeout= 10; --eval SET @@GLOBAL.slave_net_timeout= $saved --let $saved= `SELECT @@GLOBAL.sql_slave_skip_counter` SET @@GLOBAL.sql_slave_skip_counter= 10; --eval SET @@GLOBAL.sql_slave_skip_counter= $saved --let $saved= `SELECT @@SESSION.sql_log_bin` SET @@SESSION.sql_log_bin= 0; --eval SET @@SESSION.sql_log_bin= $saved # # Commands associated with the MASTER. # --error ER_NO_BINARY_LOGGING SHOW MASTER LOGS; SHOW MASTER STATUS; SHOW SLAVE HOSTS; RESET MASTER; SHOW BINLOG EVENTS; --error 2 --exec $MYSQL_DUMP --compact --master-data=2 test FLUSH LOGS; FLUSH BINARY LOGS; # # Configuration options associated with the MASTER. # --let $saved= `SELECT @@GLOBAL.max_binlog_size` SET @@GLOBAL.max_binlog_size= 536870912; --eval SET @@GLOBAL.max_binlog_size= $saved