diff options
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 2dc21e86152..2d277571296 100644 --- a/mysql-test/r/rpl000001.result +++ b/mysql-test/r/rpl000001.result @@ -8,7 +8,7 @@ drop table if exists t1,t2,t3; 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 @@ -20,16 +20,6 @@ abandoned abandoning abandonment abandons -Aarhus -Aaron -Ababa -aback -abaft -abandon -abandoned -abandoning -abandonment -abandons slave stop; set password for root@"localhost" = password('foo'); slave start; @@ -42,7 +32,7 @@ n 2 select sum(length(word)) from t1; sum(length(word)) -141 +1021 drop table t1,t3; reset master; slave stop; |