25 lines
544 B
Plaintext
25 lines
544 B
Plaintext
--source include/not_group_replication_plugin.inc
|
|
-- source include/have_binlog_format_row.inc
|
|
-- source include/master-slave.inc
|
|
|
|
--connection slave
|
|
show variables like 'slave_allow_batching';
|
|
|
|
set global slave_allow_batching=ON;
|
|
show variables like 'slave_allow_batching';
|
|
|
|
--echo Now the normal test
|
|
--connection master
|
|
|
|
let $type= 'INNODB' ;
|
|
let $extra_index= ;
|
|
-- source extra/rpl_tests/rpl_row_basic.test
|
|
|
|
--connection slave
|
|
stop slave;
|
|
set global slave_allow_batching=OFF;
|
|
--source include/start_slave.inc
|
|
|
|
--source include/rpl_end.inc
|
|
|