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.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.test')
-rw-r--r-- | mysql-test/t/partition.test | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/mysql-test/t/partition.test b/mysql-test/t/partition.test index 4583c06e74f..6fe06dfc8af 100644 --- a/mysql-test/t/partition.test +++ b/mysql-test/t/partition.test @@ -883,11 +883,13 @@ drop table t2; # # Bug#14367: Partitions: crash if utf8 column # -create table t1 (s1 char(2) character set utf8) -partition by list (cast(s1 as signed)) -(partition p1 values in (1), - partition p2 values in (2)); -drop table t1; +# utf columns not supported after Bug #18198 is fixed +# +#create table t1 (s1 char(2) character set utf8) +#partition by list (cast(s1 as signed)) +#(partition p1 values in (1), +# partition p2 values in (2)); +#drop table t1; # # Bug#15336 Partitions: crash if create table as select |