From 75b6720509d70201c15762cae623b24d8fb38c2b Mon Sep 17 00:00:00 2001 From: "jmiller@mysql.com" <> Date: Wed, 8 Feb 2006 13:08:19 +0100 Subject: More updates for using NDB as default and some bug fixes along the way --- mysql-test/r/rpl_row_001.result | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'mysql-test/r/rpl_row_001.result') diff --git a/mysql-test/r/rpl_row_001.result b/mysql-test/r/rpl_row_001.result index 990ebbc5d7a..b07a99644fc 100644 --- a/mysql-test/r/rpl_row_001.result +++ b/mysql-test/r/rpl_row_001.result @@ -7,25 +7,25 @@ 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 LIMIT 10; +SELECT * FROM t1 ORDER BY word LIMIT 10; word Aarhus +Aarhus +Aarhus +Aarhus +Aaron Aaron +Aaron +Aaron +Ababa Ababa -aback -abaft -abandon -abandoned -abandoning -abandonment -abandons STOP SLAVE; SET PASSWORD FOR root@"localhost" = PASSWORD('foo'); START SLAVE; SET PASSWORD FOR root@"localhost" = PASSWORD(''); CREATE TABLE t3(n INT); INSERT INTO t3 VALUES(1),(2); -SELECT * FROM t3; +SELECT * FROM t3 ORDER BY n; n 1 2 -- cgit v1.2.1