mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
18 lines
605 B
Text
18 lines
605 B
Text
source include/master-slave.inc;
|
|
connection master;
|
|
use test;
|
|
set SQL_LOG_BIN=0;
|
|
drop table if exists words;
|
|
create table words (word char(20) not null, index(word));
|
|
load data infile '../../std_data/words.dat' into table words;
|
|
drop table if exists words1;
|
|
create table words1 (word char(20) not null);
|
|
load data infile '../../std_data/words.dat' into table words1;
|
|
connection slave;
|
|
use test;
|
|
drop table if exists words;
|
|
load table words from master;
|
|
drop table if exists words1;
|
|
load table words1 from master;
|
|
@r/rpl000004.a.result check table words;
|
|
@r/rpl000004.b.result select count(*) from words1;
|