diff options
author | unknown <holyfoot@deer.(none)> | 2005-12-15 20:56:14 +0400 |
---|---|---|
committer | unknown <holyfoot@deer.(none)> | 2005-12-15 20:56:14 +0400 |
commit | 9008814ef74336f033b3e3542d0ef4be2c3a49cb (patch) | |
tree | 8c774cc26116d718bb67ee484e9c4ba24f4af1d2 /mysql-test/r/partition_list.result | |
parent | 36736898f3ae9dca5853662b5380a81c501a4865 (diff) | |
download | mariadb-git-9008814ef74336f033b3e3542d0ef4be2c3a49cb.tar.gz |
tests fixed as we implement informative error message
mysql-test/r/partition_list.result:
test result fixed
mysql-test/r/partition_range.result:
test result fixed
mysql-test/t/partition_list.test:
test fixed
mysql-test/t/partition_range.test:
test fixed
Diffstat (limited to 'mysql-test/r/partition_list.result')
-rw-r--r-- | mysql-test/r/partition_list.result | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/r/partition_list.result b/mysql-test/r/partition_list.result index 23185e8aabf..21c23fd68ea 100644 --- a/mysql-test/r/partition_list.result +++ b/mysql-test/r/partition_list.result @@ -9,16 +9,16 @@ partitions 2 partition x234 values in (4,7,8)); INSERT into t1 VALUES (1,1,1); INSERT into t1 VALUES (2,1,1); -ERROR HY000: Got error 1 from storage engine +ERROR HY000: Table has no partition for value 2 INSERT into t1 VALUES (3,1,1); -ERROR HY000: Got error 1 from storage engine +ERROR HY000: Table has no partition for value 3 INSERT into t1 VALUES (4,1,1); INSERT into t1 VALUES (5,1,1); INSERT into t1 VALUES (6,1,1); INSERT into t1 VALUES (7,1,1); INSERT into t1 VALUES (8,1,1); INSERT into t1 VALUES (9,1,1); -ERROR HY000: Got error 1 from storage engine +ERROR HY000: Table has no partition for value 9 INSERT into t1 VALUES (1,2,1); INSERT into t1 VALUES (1,3,1); INSERT into t1 VALUES (1,4,1); @@ -137,7 +137,7 @@ a b c 7 4 1 INSERT into t1 VALUES (6,2,1); INSERT into t1 VALUES (2,2,1); -ERROR HY000: Got error 1 from storage engine +ERROR HY000: Table has no partition for value 2 drop table t1; CREATE TABLE t1 ( a int not null, @@ -156,7 +156,7 @@ subpartition x22 nodegroup 1) INSERT into t1 VALUES (1,1,1); INSERT into t1 VALUES (4,1,1); INSERT into t1 VALUES (7,1,1); -ERROR HY000: Got error 1 from storage engine +ERROR HY000: Table has no partition for value 7 UPDATE t1 SET a=5 WHERE a=1; SELECT * from t1; a b c |