diff options
author | monty@mashka.mysql.fi <> | 2003-02-17 05:43:37 +0200 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-02-17 05:43:37 +0200 |
commit | 90bf0744383ea17fc783e405ea4faa2d4f06ae46 (patch) | |
tree | a3fbfddbae0d5a6e600e68942bb243fadb5269aa /mysql-test/r/rpl000001.result | |
parent | 6ce8e1e7046df712f442ea96d568f5b21eeb5511 (diff) | |
parent | 6051b2f9988f1e317be41e49c64718cc610c1260 (diff) | |
download | mariadb-git-90bf0744383ea17fc783e405ea4faa2d4f06ae46.tar.gz |
Merge with 4.0.11 tree to get latest bug fixes
Diffstat (limited to 'mysql-test/r/rpl000001.result')
-rw-r--r-- | mysql-test/r/rpl000001.result | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/mysql-test/r/rpl000001.result b/mysql-test/r/rpl000001.result index dd569944f0e..cc3df4730f2 100644 --- a/mysql-test/r/rpl000001.result +++ b/mysql-test/r/rpl000001.result @@ -7,7 +7,7 @@ start slave; create table t1 (word char(20) not null); load data infile '../../std_data/words.dat' into table t1; load data local infile 'MYSQL_TEST_DIR/std_data/words.dat' into table t1; -select * from t1; +select * from t1 limit 10; word Aarhus Aaron @@ -19,16 +19,6 @@ abandoned abandoning abandonment abandons -Aarhus -Aaron -Ababa -aback -abaft -abandon -abandoned -abandoning -abandonment -abandons stop slave; set password for root@"localhost" = password('foo'); start slave; @@ -41,7 +31,7 @@ n 2 select sum(length(word)) from t1; sum(length(word)) -141 +1021 drop table t1,t3; reset master; stop slave; |