diff options
author | unknown <mikael@c-0409e253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2006-06-14 22:37:20 -0400 |
---|---|---|
committer | unknown <mikael@c-0409e253.1238-1-64736c10.cust.bredbandsbolaget.se> | 2006-06-14 22:37:20 -0400 |
commit | 7431df6031227b7948765baf230a7a3eb54d4339 (patch) | |
tree | 8ed9b86f0abf7d6ae27f179d95718f8167cb9387 /mysql-test/r/partition_range.result | |
parent | ed0035a6861ff57cbcd559784b10483539d8a641 (diff) | |
download | mariadb-git-7431df6031227b7948765baf230a7a3eb54d4339.tar.gz |
merge fixes
Diffstat (limited to 'mysql-test/r/partition_range.result')
-rw-r--r-- | mysql-test/r/partition_range.result | 1 |
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) |