summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl_loaddata2.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/rpl_loaddata2.test')
-rw-r--r--mysql-test/t/rpl_loaddata2.test10
1 files changed, 8 insertions, 2 deletions
diff --git a/mysql-test/t/rpl_loaddata2.test b/mysql-test/t/rpl_loaddata2.test
index 22429666d5f..8bbbbf62f61 100644
--- a/mysql-test/t/rpl_loaddata2.test
+++ b/mysql-test/t/rpl_loaddata2.test
@@ -2,7 +2,13 @@
CREATE TABLE t1 (word CHAR(20) NOT NULL);
LOAD DATA INFILE '../../std_data/words.dat' INTO TABLE t1;
-SELECT * FROM t1;
+SELECT * FROM t1 ORDER BY word;
sync_slave_with_master;
-SELECT * FROM t1;
+SELECT * FROM t1 ORDER BY word;
+
+##########
+# Change Author: JBM
+# Change Date: 2006-01-16
+# Change: Added Order by for NDB
+##########