diff options
author | unknown <mikael/pappa@dator5.(none)> | 2006-07-31 11:38:09 -0400 |
---|---|---|
committer | unknown <mikael/pappa@dator5.(none)> | 2006-07-31 11:38:09 -0400 |
commit | 04a70beb674878d850571102706476c54a258fd5 (patch) | |
tree | de0a7f36023a582a363eb28f116213550082b456 /mysql-test/t/partition_error.test | |
parent | 1e949e84c59af2f32d116117d4e4b9ae2f1ffdb7 (diff) | |
download | mariadb-git-04a70beb674878d850571102706476c54a258fd5.tar.gz |
BUG#18198: More fixes
mysql-test/r/partition.result:
Removed test case no longer supported
mysql-test/r/partition_error.result:
Changed behaviour of test case
mysql-test/r/partition_pruning.result:
Changed behaviour of test case
mysql-test/t/partition.test:
Changed behaviour of test case
mysql-test/t/partition_error.test:
Changed behaviour of test case
mysql-test/t/partition_pruning.test:
Changed behaviour of test case
sql/sql_partition.cc:
Ensured PARTITION BY KEY can use any column type
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 a9efbc587be..2c0706cb2cb 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) |