mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
0968c713aa
fine 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 mysql-test/r/mysqlbinlog.result: Update result for BUG#32205 mysql-test/r/mysqlbinlog2.result: Update result for BUG#32205 mysql-test/r/user_var-binlog.result: Update result for BUG#32205 mysql-test/suite/binlog/r/binlog_stm_ctype_ucs.result: Update result for BUG#32205 mysql-test/suite/binlog/r/binlog_stm_mix_innodb_myisam.result: Update result for BUG#32205 mysql-test/suite/binlog/t/binlog_stm_mix_innodb_myisam.test: fix test for BUG#32205 mysql-test/suite/rpl/r/rpl_row_mysqlbinlog.result: Update result for BUG#32205 mysql-test/suite/rpl/r/rpl_stm_charset.result: Update result for BUG#32205 sql/log_event.cc: Start a newline before appending delimiter after a query string mysql-test/suite/binlog/r/binlog_start_comment.result: Add test for BUG#32205 mysql-test/suite/binlog/t/binlog_start_comment.test: Add test for BUG#32205
15 lines
357 B
Text
15 lines
357 B
Text
reset master;
|
|
drop table if exists t1,t2;
|
|
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;
|
|
word
|
|
Ada
|
|
flush logs;
|
|
select * from t2;
|
|
word
|
|
Ada
|
|
drop table t1,t2;
|