mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
15 lines
417 B
Text
15 lines
417 B
Text
source 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.dat' 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/rpl000001.a.result select * from foo;
|
|
@r/rpl000001.b.result select sum(length(word)) from words;
|
|
|