diff options
author | sasha@mysql.sashanet.com <> | 2000-12-07 07:54:59 -0700 |
---|---|---|
committer | sasha@mysql.sashanet.com <> | 2000-12-07 07:54:59 -0700 |
commit | ec1359416be7cec52f94dc4f7d6fabb2d406d416 (patch) | |
tree | ef39d8dcdf72e86ba28a8083870495ea8e17395c /mysql-test/t/rpl000001.test | |
parent | a5c75df390e9b67454bd0a04e75583057e9579f7 (diff) | |
download | mariadb-git-ec1359416be7cec52f94dc4f7d6fabb2d406d416.tar.gz |
fixed up mysql-test - will not push this yet, as more clean up/testing is to follow
Diffstat (limited to 'mysql-test/t/rpl000001.test')
-rw-r--r-- | mysql-test/t/rpl000001.test | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/mysql-test/t/rpl000001.test b/mysql-test/t/rpl000001.test new file mode 100644 index 00000000000..5bf0e0dbab5 --- /dev/null +++ b/mysql-test/t/rpl000001.test @@ -0,0 +1,15 @@ +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; + |