diff options
author | mikael/pappa@dator5.(none) <> | 2006-08-02 08:06:46 -0400 |
---|---|---|
committer | mikael/pappa@dator5.(none) <> | 2006-08-02 08:06:46 -0400 |
commit | 9711ee848c85152227338ef578cad226e28f36fb (patch) | |
tree | ad5301abf9a30d1369784942fa3197a3dec389f0 /mysql-test/t/partition_error.test | |
parent | fbd15d253d8b76c26695e953c81b341c8ecf1001 (diff) | |
download | mariadb-git-9711ee848c85152227338ef578cad226e28f36fb.tar.gz |
BUG#18198: Fixes
ascii on varchar now allowed
Diffstat (limited to 'mysql-test/t/partition_error.test')
-rw-r--r-- | mysql-test/t/partition_error.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/partition_error.test b/mysql-test/t/partition_error.test index 2c0706cb2cb..a9efbc587be 100644 --- a/mysql-test/t/partition_error.test +++ b/mysql-test/t/partition_error.test @@ -809,10 +809,10 @@ partition by range (a) # # Bug 18198 Partitions: Verify that erroneus partition functions doesn't work # --- error ER_PARTITION_FUNCTION_IS_NOT_ALLOWED create table t1 (v varchar(12)) partition by range (ascii(v)) (partition p0 values less than (10)); +drop table t1; -- error 1064 create table t1 (a int) |