Server IP : 104.21.38.3 / Your IP : 162.158.163.101 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/rpl/t/ |
Upload File : |
##--------------------------------------------------------------------------- # Purpose: Testing error messages for --replicate-rewrite-db option ##-------------------------------------------------------------------------- #check single character databases. Bug#11747866 --let $rpl_skip_reset_master_and_slave= 1 --let $rpl_skip_change_master= 1 --let $rpl_skip_start_slave= 1 --source include/master-slave.inc --connection master #check for normal functionality --echo testing for normal fuctionality --let $rpl_server_number= 1 --let $rpl_server_parameters= --replicate-rewrite-db='mysql->test' --source include/rpl_start_server.inc --echo [PASS] #check for single characters databases. BUG#11747866 --echo testing with single letter databases name. --let $rpl_server_number= 1 --let $rpl_server_parameters= --replicate-rewrite-db='a->b' --source include/rpl_start_server.inc --echo [PASS] #check for '->' operator not found. Should fail with error --echo check for '->' operator not found. Should FAIL with error --disable_result_log --error 1 exec $MYSQLD --replicate-rewrite-db='mysql' 2>&1; --enable_result_log --echo [FAIL] #check for empty "from" db name. Should fail with error --echo check for empty "from" db name. Should FAIL with error --disable_result_log --error 1 exec $MYSQLD --replicate-rewrite-db= '->test ' 2>&1; --enable_result_log --echo [FAIL] #check for empty "to" db name. Should fail with error. --echo check for empty "to" db name. Should FAIL with error --disable_result_log --error 1 exec $MYSQLD --replicate-rewrite-db='acc-> ' 2>&1; --enable_result_log --echo [FAIL]