Server IP : 172.67.216.182 / Your IP : 162.158.106.46 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/extra/rpl_tests/ |
Upload File : |
############################################################################### # This .inc file is to check that filtering rules on # CREATE DATABASE/ALTER DATABASE/DROP DATABASE statements # works properly. # NOTE: Filter rules should be set in such a way that 'db1' # is filtered out on Slave. Setting the filtering rule # should be done in the test that includes this .inc file. # For eg: # --replicate-ignore-db=db1 # --source ../extra/rpl_tests/rpl_db_stmts_ignored.inc # (OR) # --replicate-do-db=db2 # --source ../extra/rpl_tests/rpl_db_stmts_ignored.inc # (OR) # --replicate-wild-ignore-table=db1.% # --source ../extra/rpl_tests/rpl_db_stmts_ignored.inc ############################################################################### --source include/rpl_connection_master.inc --echo # --echo # Execute 'CREATE DATABASE db1' on Master. --echo # CREATE DATABASE db1; --echo # --echo # Sync with Slave (using gtid values) --echo # --let $use_gtids=1 --source include/sync_slave_sql_with_master.inc --echo # --echo # Check that even after sync is completed 'db1' does not exists --echo # on Slave which implies that 'CREATE DATABASE db1' is filtered --echo # out. --echo # --error ER_BAD_DB_ERROR USE db1; --echo # --echo # Execute other database commands (ALTER/DROP) on Master. --echo # --source include/rpl_connection_master.inc ALTER DATABASE db1 CHARACTER SET latin1; DROP DATABASE db1; --echo # --echo # Check that we are able to sync with slave successfully --echo # which implies that those commands are filtered out. --echo # If they were executed by Slave, that will break replication --echo # as we do not have 'db1' database on Slave. --let $use_gtids=1 --source include/sync_slave_sql_with_master.inc