Server IP : 104.21.38.3 / Your IP : 172.70.189.22 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 : |
# This test assumes we are ignoring updates on table t2, but doing # updates on t1 --source include/not_group_replication_plugin.inc source include/not_gtid_enabled.inc; source include/master-slave.inc; --disable_warnings drop table if exists t11; connection slave; drop table if exists t11; --enable_warnings create table t2 (n int); insert into t2 values(4); connection master; create table t2 (s char(20)); load data infile '../../std_data/words.dat' into table t2; insert into t2 values('five'); create table t1 (m int); insert into t1 values(15),(16),(17); update t1 set m=20 where m=16; delete from t1 where m=17; create table t11 select * from t1; --source include/sync_slave_sql_with_master.inc select * from t1 ORDER BY m; select * from t2; --error 1146 select * from t11; connection master; drop table if exists t1,t2,t11; --source include/sync_slave_sql_with_master.inc # show slave status, just to see of it prints replicate-do-table let $status_items= Replicate_Do_Table; source include/show_slave_status.inc; # End of 4.1 tests # # Bug#24478 DROP TRIGGER is not caught by replicate-*-table filters # --echo *** master *** connection master; create table t1 (a int, b int); create trigger trg1 before insert on t1 for each row set new.b=2; create table t2 (a int, b int); create trigger trg2 before insert on t2 for each row set new.b=2; show tables; --replace_column 6 # show triggers; --source include/sync_slave_sql_with_master.inc --echo *** slave *** connection slave; show tables; --replace_column 6 # show triggers; --echo *** master *** connection master; drop trigger trg1; drop trigger trg2; --replace_column 6 # show triggers; --source include/sync_slave_sql_with_master.inc --echo *** slave *** connection slave; show tables; --replace_column 6 # show triggers; --echo *** master *** connection master; drop table t1; drop table t2; --source include/sync_slave_sql_with_master.inc --source include/rpl_end.inc