summaryrefslogtreecommitdiff
path: root/mysql-test/t/partition.test
diff options
context:
space:
mode:
authorMattias Jonsson <mattias.jonsson@oracle.com>2010-10-01 15:32:03 +0200
committerMattias Jonsson <mattias.jonsson@oracle.com>2010-10-01 15:32:03 +0200
commitfbb49d80ebbd09158e87a0810528250f67018330 (patch)
tree1c8cc57d86d6b90fd2000202c45bfb769e1e7400 /mysql-test/t/partition.test
parent9aa7484cfe9d5255dc9addeca97bc4a93d0d4f71 (diff)
parent53fe2b31f2aaf8aae7b0a12881ff8dbc7d59770f (diff)
downloadmariadb-git-fbb49d80ebbd09158e87a0810528250f67018330.tar.gz
merge
Diffstat (limited to 'mysql-test/t/partition.test')
-rw-r--r--mysql-test/t/partition.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/partition.test b/mysql-test/t/partition.test
index 1a64988d058..196285a6d22 100644
--- a/mysql-test/t/partition.test
+++ b/mysql-test/t/partition.test
@@ -458,12 +458,12 @@ drop table t1;
#
# BUG 16002: Handle unsigned integer functions properly
#
---error ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR
+--error ER_VALUES_IS_NOT_INT_TYPE_ERROR
create table t1 (a bigint)
partition by range (a)
(partition p0 values less than (0xFFFFFFFFFFFFFFFF),
partition p1 values less than (10));
---error ER_INCONSISTENT_TYPE_OF_FUNCTIONS_ERROR
+--error ER_VALUES_IS_NOT_INT_TYPE_ERROR
create table t1 (a bigint)
partition by list (a)
(partition p0 values in (0xFFFFFFFFFFFFFFFF),