mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
7c136ed959
mysql-test/r/binlog_start_comment.result: Drop tables used in the test case when done mysql-test/r/blackhole.result: Mask out file_id in show binlog events output mysql-test/r/case.result: Drop table t2 too if it exists at the start of the test mysql-test/t/blackhole.test: Mask out file_id in show binlog events output mysql-test/t/case.test: Drop table t2 too if it exists at the start of the test
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;
|