diff options
author | Sergei Golubchik <sergii@pisem.net> | 2012-02-29 21:55:04 +0100 |
---|---|---|
committer | Sergei Golubchik <sergii@pisem.net> | 2012-02-29 21:55:04 +0100 |
commit | e4bfb6f161b77a8c5801ba71b4ffd980066a1399 (patch) | |
tree | a48bbc4154695db34ba124f07a70bef5cabab48d /mysql-test/t/bulk_replace.test | |
parent | e293bdb2c19cacad91d4f5a846568ac595b3a48e (diff) | |
download | mariadb-git-e4bfb6f161b77a8c5801ba71b4ffd980066a1399.tar.gz |
pbxt suite is now a main-pbxt overlay
Diffstat (limited to 'mysql-test/t/bulk_replace.test')
-rw-r--r-- | mysql-test/t/bulk_replace.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/bulk_replace.test b/mysql-test/t/bulk_replace.test index 4e567c43104..3c623909c56 100644 --- a/mysql-test/t/bulk_replace.test +++ b/mysql-test/t/bulk_replace.test @@ -7,6 +7,7 @@ drop table if exists t1; --enable_warnings CREATE TABLE t1 (a int, unique (a), b int not null, unique(b), c int not null, index(c)); replace into t1 values (1,1,1),(2,2,2),(3,1,3); +--sorted_result select * from t1; check table t1; drop table t1; |