diff options
Diffstat (limited to 'repl-tests/test-repl/run.test')
-rwxr-xr-x | repl-tests/test-repl/run.test | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/repl-tests/test-repl/run.test b/repl-tests/test-repl/run.test new file mode 100755 index 00000000000..79eb2281b85 --- /dev/null +++ b/repl-tests/test-repl/run.test @@ -0,0 +1,24 @@ +source ../include/master-slave.inc; +connection slave; +!slave stop; +connection master; +flush master; +connection slave; +flush slave; +!slave start; +sleep 3; +connection master; +use test; +drop table if exists words; +create table words (word char(20) not null, index(word)); +load data infile '/usr/dict/words' into table words; +drop table if exists foo; +create table foo(n int); +insert into foo values(1),(2); +@foo-dump-master.master select * from foo; +@sum-wlen-master.master select sum(length(word)) from words; +connection slave; +sleep 5; +use test; +@sum-wlen-slave.master select sum(length(word)) from words; +@foo-dump-slave.master select * from foo; |