diff options
author | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-10-01 15:32:03 +0200 |
---|---|---|
committer | Mattias Jonsson <mattias.jonsson@oracle.com> | 2010-10-01 15:32:03 +0200 |
commit | fbb49d80ebbd09158e87a0810528250f67018330 (patch) | |
tree | 1c8cc57d86d6b90fd2000202c45bfb769e1e7400 /mysql-test/r/partition.result | |
parent | 9aa7484cfe9d5255dc9addeca97bc4a93d0d4f71 (diff) | |
parent | 53fe2b31f2aaf8aae7b0a12881ff8dbc7d59770f (diff) | |
download | mariadb-git-fbb49d80ebbd09158e87a0810528250f67018330.tar.gz |
merge
Diffstat (limited to 'mysql-test/r/partition.result')
-rw-r--r-- | mysql-test/r/partition.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/partition.result b/mysql-test/r/partition.result index ae6cf09e25d..28206b8e9a6 100644 --- a/mysql-test/r/partition.result +++ b/mysql-test/r/partition.result @@ -551,12 +551,12 @@ create table t1 (a bigint) partition by range (a) (partition p0 values less than (0xFFFFFFFFFFFFFFFF), partition p1 values less than (10)); -ERROR HY000: VALUES value must be of same type as partition function +ERROR HY000: VALUES value for partition 'p0' must have type INT create table t1 (a bigint) partition by list (a) (partition p0 values in (0xFFFFFFFFFFFFFFFF), partition p1 values in (10)); -ERROR HY000: VALUES value must be of same type as partition function +ERROR HY000: VALUES value for partition 'p0' must have type INT create table t1 (a bigint unsigned) partition by range (a) (partition p0 values less than (100), |