| Server IP : 45.40.142.9 / Your IP : 216.73.216.236 Web Server : Apache System : Linux s45-40-142-9.secureserver.net 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : bayspec ( 506) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/mysql-test/extra/rpl_tests/ |
Upload File : |
# See if INSERT DELAYED gets replicated # Only in row-based, as we do SHOW BINLOG EVENTS -- source include/not_gtid_enabled.inc -- source include/have_binlog_format_row.inc -- source include/master-slave.inc connection master; let $VERSION=`select version()`; eval create table t1(a int not null primary key) engine=$engine_type; insert delayed into t1 values (1); insert delayed into t1 values (2); insert delayed into t1 values (3); flush tables; SELECT * FROM t1 ORDER BY a; sync_slave_with_master; SELECT * FROM t1 ORDER BY a; connection master; drop table t1; --source include/rpl_end.inc