2000-12-07 15:54:59 +01:00
|
|
|
source include/master-slave.inc;
|
2000-11-18 07:35:40 +01:00
|
|
|
connection master;
|
|
|
|
use test;
|
2001-01-03 01:15:48 +01:00
|
|
|
drop table if exists t1;
|
|
|
|
create table t1 (word char(20) not null);
|
|
|
|
load data infile '../../std_data/words.dat' into table t1;
|
2000-11-18 07:35:40 +01:00
|
|
|
drop table if exists foo;
|
2001-01-19 20:12:45 +01:00
|
|
|
set password = password('foo');
|
|
|
|
set password = password('');
|
2000-11-18 07:35:40 +01:00
|
|
|
create table foo(n int);
|
|
|
|
insert into foo values(1),(2);
|
2001-01-17 13:47:33 +01:00
|
|
|
save_master_pos;
|
2000-11-18 07:35:40 +01:00
|
|
|
connection slave;
|
2001-01-17 13:47:33 +01:00
|
|
|
sync_with_master;
|
2000-11-18 07:35:40 +01:00
|
|
|
use test;
|
2001-01-17 13:47:33 +01:00
|
|
|
select * from foo;
|
|
|
|
select sum(length(word)) from t1;
|
2001-01-03 01:15:48 +01:00
|
|
|
connection master;
|
|
|
|
drop table t1;
|
2001-01-17 13:47:33 +01:00
|
|
|
save_master_pos;
|
|
|
|
connection slave;
|
|
|
|
sync_with_master;
|
2000-11-18 07:35:40 +01:00
|
|
|
|