diff options
author | unknown <jmiller@mysql.com> | 2006-05-02 22:56:53 +0200 |
---|---|---|
committer | unknown <jmiller@mysql.com> | 2006-05-02 22:56:53 +0200 |
commit | 0b40725d05ca84788ed1a5c9d299419aec08aa51 (patch) | |
tree | 19d5bc373a9e0693e7c6d31d5865a11afe670d15 /mysql-test/t/rpl_loaddatalocal.test | |
parent | 6309c36c6ba06ebc30054b9f4a789740dae00269 (diff) | |
download | mariadb-git-0b40725d05ca84788ed1a5c9d299419aec08aa51.tar.gz |
rpl_loaddatalocal.result, rpl_loaddatalocal.test:
updated for ndb cluster testing
mysql-test/t/rpl_loaddatalocal.test:
updated for ndb cluster testing
mysql-test/r/rpl_loaddatalocal.result:
updated for ndb cluster testing
Diffstat (limited to 'mysql-test/t/rpl_loaddatalocal.test')
-rw-r--r-- | mysql-test/t/rpl_loaddatalocal.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/rpl_loaddatalocal.test b/mysql-test/t/rpl_loaddatalocal.test index af4fd0106bd..758ac94af24 100644 --- a/mysql-test/t/rpl_loaddatalocal.test +++ b/mysql-test/t/rpl_loaddatalocal.test @@ -53,11 +53,11 @@ create table t1(a int primary key); --replace_result $MYSQLTEST_VARDIR MYSQLTEST_VARDIR eval load data local infile '$MYSQLTEST_VARDIR/master-data/rpl_loaddatalocal.select_outfile' into table t1; system rm $MYSQLTEST_VARDIR/master-data/rpl_loaddatalocal.select_outfile ; -select * from t1; +SELECT * FROM t1 ORDER BY a; save_master_pos; connection slave; sync_with_master; -select * from t1; +SELECT * FROM t1 ORDER BY a; connection master; drop table t1; save_master_pos; |