summaryrefslogtreecommitdiff
path: root/mysql-test/t/3.23/rpl000001.test
blob: bd094cd639180cfb2094cb5d7ee69b6efe02bf4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
source t/include/master-slave.inc;
connection master;
use test;
drop table if exists words;
create table words (word char(20) not null);
load data infile '../../std_data/words' into table words;
drop table if exists foo;
create table foo(n int);
insert into foo values(1),(2);
connection slave;
sleep 2;
use test;
@r/3.23/rpl000001.a.result select * from foo;
@r/3.23/rpl000001.b.result select sum(length(word)) from words;