diff options
author | Igor Babaev <igor@askmonty.org> | 2013-07-08 12:55:11 -0700 |
---|---|---|
committer | Igor Babaev <igor@askmonty.org> | 2013-07-08 12:55:11 -0700 |
commit | f1848be7467ed1708a693e3ba10f6e637763094a (patch) | |
tree | f8359bd08e27b1292d21fb88b02c1b2dc3b7114d /mysql-test/r | |
parent | 66f1a848f44748ba2fd31c2463f6b73ae45d5f1f (diff) | |
download | mariadb-git-f1848be7467ed1708a693e3ba10f6e637763094a.tar.gz |
Fixed a failure in partition_truncate.test.
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/partition_truncate.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/partition_truncate.result b/mysql-test/r/partition_truncate.result index 66c0cd3d9da..7a82e47d818 100644 --- a/mysql-test/r/partition_truncate.result +++ b/mysql-test/r/partition_truncate.result @@ -5,7 +5,7 @@ partition by list (a) alter table t1 truncate partition p1,p1; ERROR HY000: Incorrect partition name alter table t1 truncate partition p0; -ERROR HY000: Incorrect partition name +ERROR HY000: Unknown partition 'p0' in table 't1' drop table t1; create table t1 (a int) partition by list (a) |