summaryrefslogtreecommitdiff
path: root/mysql-test/suite/binlog/r/binlog_start_comment.result
blob: c5c906dfc4e3b8103a15ceaec53907685ceb1e09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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/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;