1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +03:00

BUG#18198: Fixes

ascii on varchar now allowed


mysql-test/r/partition_error.result:
  ascii on varchar now allowed
mysql-test/t/partition_error.test:
  ascii on varchar now allowed
This commit is contained in:
unknown
2006-08-02 08:06:46 -04:00
parent 66f51d1574
commit d7c7f5a95d
2 changed files with 2 additions and 2 deletions

View File

@@ -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)