summaryrefslogtreecommitdiff
path: root/mysql-test/t/partition_range.test
diff options
context:
space:
mode:
authorunknown <holyfoot@deer.(none)>2005-12-15 20:56:14 +0400
committerunknown <holyfoot@deer.(none)>2005-12-15 20:56:14 +0400
commit9008814ef74336f033b3e3542d0ef4be2c3a49cb (patch)
tree8c774cc26116d718bb67ee484e9c4ba24f4af1d2 /mysql-test/t/partition_range.test
parent36736898f3ae9dca5853662b5380a81c501a4865 (diff)
downloadmariadb-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.test10
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;