mirror of
https://github.com/MariaDB/server.git
synced 2025-05-28 13:01:41 +03:00

The reason of this bug is that when mysqlbinlog dumps a query, the query is written to output with a delimeter appended right after it, if the query string ends with a '--' comment, then the delimeter would be considered as part of the comment, if there are any statements after this query, then it will cause a syntax error. Start a newline before appending delimiter after a query string
17 lines
559 B
Plaintext
17 lines
559 B
Plaintext
# Test case for bug#32205 Replaying statements from mysqlbinlog fails
|
|
# with a syntax error, replicates fine
|
|
|
|
-- source include/have_log_bin.inc
|
|
--disable_warnings
|
|
drop table if exists t1,t2;
|
|
--enable_warnings
|
|
create table t1 (word varchar(20)) -- create table t1;
|
|
create table t2 (word varchar(20)) -- create table t2;
|
|
load data infile '../std_data_ln/words.dat' into table t1 -- load data to t1;
|
|
insert into t2 values ("Ada");
|
|
flush logs;
|
|
select * from t2;
|
|
--exec $MYSQL_BINLOG $MYSQLTEST_VARDIR/log/master-bin.000001 | $MYSQL
|
|
flush logs;
|
|
select * from t2;
|