summaryrefslogtreecommitdiff
path: root/mysql-test/r/partition_range.result
diff options
context:
space:
mode:
authorunknown <mikael@c-0409e253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-06-14 22:37:20 -0400
committerunknown <mikael@c-0409e253.1238-1-64736c10.cust.bredbandsbolaget.se>2006-06-14 22:37:20 -0400
commit2c05f9e8dbd25d976388b879c19125045029b704 (patch)
tree8ed9b86f0abf7d6ae27f179d95718f8167cb9387 /mysql-test/r/partition_range.result
parentc40bce0407d3bc009a55fc9fe7c47794a7045cee (diff)
downloadmariadb-git-2c05f9e8dbd25d976388b879c19125045029b704.tar.gz
merge fixes
Diffstat (limited to 'mysql-test/r/partition_range.result')
-rw-r--r--mysql-test/r/partition_range.result1
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/partition_range.result b/mysql-test/r/partition_range.result
index ff17abe0ffb..152f91f0887 100644
--- a/mysql-test/r/partition_range.result
+++ b/mysql-test/r/partition_range.result
@@ -389,6 +389,7 @@ t1 CREATE TABLE `t1` (
) ENGINE=MyISAM DEFAULT CHARSET=latin1 PARTITION BY RANGE (a) (PARTITION p0 VALUES LESS THAN (2) ENGINE = MyISAM, PARTITION p1 VALUES LESS THAN (10) ENGINE = MyISAM)
insert into t1 values (0xFFFFFFFFFFFFFFFF);
ERROR HY000: Table has no partition for value 18446744073709551615
+drop table t1;
create table t1 (a int)
partition by range (MOD(a,3))
subpartition by hash(a)