1
# This test is to verify replication with PS
3
-- source include/not_embedded.inc
4
-- source include/have_binlog_format_statement.inc
7
reset master; # get rid of previous tests binlog
11
drop table if exists t1;
16
# Bug #26842: master binary log contains invalid queries - replication fails
18
create table t1 (a int);
19
prepare s from "insert into t1 values (@a),(?)";
20
set @a=98; execute s using @a;
21
prepare s from "insert into t1 values (?)";
22
set @a=99; execute s using @a;
23
prepare s from "insert into t1 select 100 limit ?";
24
set @a=100; execute s using @a;
25
source include/show_binlog_events.inc;