summaryrefslogtreecommitdiff
path: root/mysql-test/t/rpl_loadfile.test
diff options
context:
space:
mode:
authorjmiller@mysql.com <>2006-01-18 00:45:23 +0100
committerjmiller@mysql.com <>2006-01-18 00:45:23 +0100
commit8e5e0afae31af127edf934388b95e0ae43305e68 (patch)
tree78261ded211ed338327561efcc01698b58652586 /mysql-test/t/rpl_loadfile.test
parent4d885f5c0353743435b64f4823560eb75f88613f (diff)
downloadmariadb-git-8e5e0afae31af127edf934388b95e0ae43305e68.tar.gz
Updated test cases for testing Cluster Replication using the rpl* test cases
Diffstat (limited to 'mysql-test/t/rpl_loadfile.test')
-rw-r--r--mysql-test/t/rpl_loadfile.test14
1 files changed, 7 insertions, 7 deletions
diff --git a/mysql-test/t/rpl_loadfile.test b/mysql-test/t/rpl_loadfile.test
index 58d5717b7e8..61a0cc46628 100644
--- a/mysql-test/t/rpl_loadfile.test
+++ b/mysql-test/t/rpl_loadfile.test
@@ -4,6 +4,10 @@
#############################################################################
# TEST: To test the LOAD_FILE() in rbr #
#############################################################################
+# Change Author: JBM
+# Change Date: 2006-01-16
+# Change: Added Order by for NDB
+##########
# Includes
-- source include/master-slave.inc
@@ -30,18 +34,14 @@ end|
delimiter ;|
CALL test.p1();
-SELECT * FROM test.t1;
+SELECT * FROM test.t1 ORDER BY blob_column;
save_master_pos;
sync_slave_with_master;
connection slave;
-SHOW CREATE TABLE test.t1;
-SELECT * FROM test.t1;
+SELECT * FROM test.t1 ORDER BY blob_column;
-connection master;
# Lets cleanup
-#show binlog events;
-
+connection master;
DROP PROCEDURE IF EXISTS test.p1;
DROP TABLE test.t1;
-
# End of 5.0 test case