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/t/partition_range.test | |
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/t/partition_range.test')
-rw-r--r-- | mysql-test/t/partition_range.test | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mysql-test/t/partition_range.test b/mysql-test/t/partition_range.test index 08cc841b12e..9a81914ed2d 100644 --- a/mysql-test/t/partition_range.test +++ b/mysql-test/t/partition_range.test @@ -97,7 +97,7 @@ partitions 3 INSERT into t1 values (1, 1, 1); INSERT into t1 values (6, 1, 1); INSERT into t1 values (10, 1, 1); ---error 1030 +--error ER_NO_PARTITION_FOR_GIVEN_VALUE INSERT into t1 values (15, 1, 1); select * from t1; @@ -219,7 +219,7 @@ subpartition by hash (a+b) INSERT into t1 VALUES (1,1,1); INSERT into t1 VALUES (4,1,1); ---error 1030 +--error ER_NO_PARTITION_FOR_GIVEN_VALUE INSERT into t1 VALUES (5,1,1); SELECT * from t1; @@ -260,7 +260,7 @@ subpartition by hash (a+b) INSERT into t1 VALUES (1,1,1); INSERT into t1 VALUES (4,1,1); ---error 1030 +--error ER_NO_PARTITION_FOR_GIVEN_VALUE INSERT into t1 VALUES (5,1,1); SELECT * from t1; @@ -301,7 +301,7 @@ subpartition by hash (a+b) INSERT into t1 VALUES (1,1,1); INSERT into t1 VALUES (4,1,1); ---error 1030 +--error ER_NO_PARTITION_FOR_GIVEN_VALUE INSERT into t1 VALUES (5,1,1); SELECT * from t1; @@ -342,7 +342,7 @@ subpartition by hash (a+b) INSERT into t1 VALUES (1,1,1); INSERT into t1 VALUES (4,1,1); ---error 1030 +--error ER_NO_PARTITION_FOR_GIVEN_VALUE INSERT into t1 VALUES (5,1,1); SELECT * from t1; |