mirror of
https://github.com/MariaDB/server.git
synced 2025-05-10 02:01:19 +03:00
24 lines
535 B
Plaintext
24 lines
535 B
Plaintext
source include/master-slave.inc;
|
|
connection master;
|
|
use test;
|
|
drop table if exists t1;
|
|
create table t1 (word char(20) not null);
|
|
load data infile '../../std_data/words.dat' into table t1;
|
|
drop table if exists foo;
|
|
set password = password('foo');
|
|
set password = password('');
|
|
create table foo(n int);
|
|
insert into foo values(1),(2);
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
use test;
|
|
select * from foo;
|
|
select sum(length(word)) from t1;
|
|
connection master;
|
|
drop table t1;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
|