diff options
author | unknown <brian@zim.(none)> | 2006-02-24 14:16:06 -0800 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2006-02-24 14:16:06 -0800 |
commit | d958f19a1b9f7ed2a96f7c782088c8d513cf96fa (patch) | |
tree | 570524ad540538c67d40361e55a450d01a47a4a5 /mysql-test/r/partition_02myisam.result | |
parent | cdeacb39546b1a6b8bef9998c0b9beacfba8298c (diff) | |
download | mariadb-git-d958f19a1b9f7ed2a96f7c782088c8d513cf96fa.tar.gz |
Fix error messages. Someone pushed a change to an error message but did not update the tests.
AKA someone pushed without testing.
mysql-test/r/partition_02myisam.result:
Fixed error messages
Diffstat (limited to 'mysql-test/r/partition_02myisam.result')
-rw-r--r-- | mysql-test/r/partition_02myisam.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/partition_02myisam.result b/mysql-test/r/partition_02myisam.result index 184f9ce17cc..a8cececa719 100644 --- a/mysql-test/r/partition_02myisam.result +++ b/mysql-test/r/partition_02myisam.result @@ -1160,12 +1160,12 @@ ERROR 42000: You have an error in your SQL syntax; check the manual that corresp (PARTITION part1 VALUES LESS THAN (100), PARTITION part2 VALUES LESS THAN (21' at line 3 CREATE TABLE t1 ( f1 INTEGER, f2 char(20)) PARTITION BY HASH(f1) PARTITIONS 1000000; -ERROR HY000: Too many partitions were defined +ERROR HY000: Too many partitions (including subpartitions) were defined CREATE TABLE t1 ( f1 INTEGER, f2 char(20)) PARTITION BY RANGE(f1) SUBPARTITION BY HASH(f1) SUBPARTITIONS 1000000 (PARTITION part1 VALUES LESS THAN (100), PARTITION part2 VALUES LESS THAN (2147483647)); -ERROR HY000: Too many partitions were defined +ERROR HY000: Too many partitions (including subpartitions) were defined # 3.2.4 partition/subpartition numbers STRING notation CREATE TABLE t1 ( f1 INTEGER, f2 char(20)) PARTITION BY HASH(f1) PARTITIONS '2'; |