Below is the list of changes that have just been committed into a local
5.1 repository of hf. When hf does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.1977 05/12/15 20:56:14 holyfoot@deer.(none) +4 -0
tests fixed as we implement informative error message
mysql-test/t/partition_range.test
1.4 05/12/15 20:56:08 holyfoot@stripped +5 -5
test fixed
mysql-test/t/partition_list.test
1.3 05/12/15 20:56:08 holyfoot@stripped +5 -5
test fixed
mysql-test/r/partition_range.result
1.4 05/12/15 20:56:08 holyfoot@stripped +5 -5
test result fixed
mysql-test/r/partition_list.result
1.3 05/12/15 20:56:08 holyfoot@stripped +5 -5
test result fixed
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: holyfoot
# Host: deer.(none)
# Root: /home/hf/work/mysql-5.1.clean
--- 1.2/mysql-test/r/partition_list.result Wed Jul 20 19:04:32 2005
+++ 1.3/mysql-test/r/partition_list.result Thu Dec 15 20:56:08 2005
@@ -9,16 +9,16 @@
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 @@
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 @@
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
--- 1.3/mysql-test/r/partition_range.result Tue Sep 20 19:29:52 2005
+++ 1.4/mysql-test/r/partition_range.result Thu Dec 15 20:56:08 2005
@@ -94,7 +94,7 @@
INSERT into t1 values (6, 1, 1);
INSERT into t1 values (10, 1, 1);
INSERT into t1 values (15, 1, 1);
-ERROR HY000: Got error 1 from storage engine
+ERROR HY000: Table has no partition for value 15
select * from t1;
a b c
1 1 1
@@ -206,7 +206,7 @@
INSERT into t1 VALUES (1,1,1);
INSERT into t1 VALUES (4,1,1);
INSERT into t1 VALUES (5,1,1);
-ERROR HY000: Got error 1 from storage engine
+ERROR HY000: Table has no partition for value 5
SELECT * from t1;
a b c
1 1 1
@@ -243,7 +243,7 @@
INSERT into t1 VALUES (1,1,1);
INSERT into t1 VALUES (4,1,1);
INSERT into t1 VALUES (5,1,1);
-ERROR HY000: Got error 1 from storage engine
+ERROR HY000: Table has no partition for value 5
SELECT * from t1;
a b c
1 1 1
@@ -280,7 +280,7 @@
INSERT into t1 VALUES (1,1,1);
INSERT into t1 VALUES (4,1,1);
INSERT into t1 VALUES (5,1,1);
-ERROR HY000: Got error 1 from storage engine
+ERROR HY000: Table has no partition for value 5
SELECT * from t1;
a b c
1 1 1
@@ -317,7 +317,7 @@
INSERT into t1 VALUES (1,1,1);
INSERT into t1 VALUES (4,1,1);
INSERT into t1 VALUES (5,1,1);
-ERROR HY000: Got error 1 from storage engine
+ERROR HY000: Table has no partition for value 5
SELECT * from t1;
a b c
1 1 1
--- 1.2/mysql-test/t/partition_list.test Wed Jul 20 17:45:59 2005
+++ 1.3/mysql-test/t/partition_list.test Thu Dec 15 20:56:08 2005
@@ -22,16 +22,16 @@
partition x234 values in (4,7,8));
INSERT into t1 VALUES (1,1,1);
---error 1030
+--error ER_NO_PARTITION_FOR_GIVEN_VALUE
INSERT into t1 VALUES (2,1,1);
---error 1030
+--error ER_NO_PARTITION_FOR_GIVEN_VALUE
INSERT into t1 VALUES (3,1,1);
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);
---error 1030
+--error ER_NO_PARTITION_FOR_GIVEN_VALUE
INSERT into t1 VALUES (9,1,1);
INSERT into t1 VALUES (1,2,1);
INSERT into t1 VALUES (1,3,1);
@@ -64,7 +64,7 @@
partition x234 values in (4,7,8));
SELECT * from t1;
INSERT into t1 VALUES (6,2,1);
---error 1030
+--error ER_NO_PARTITION_FOR_GIVEN_VALUE
INSERT into t1 VALUES (2,2,1);
drop table t1;
@@ -89,7 +89,7 @@
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 (7,1,1);
UPDATE t1 SET a=5 WHERE a=1;
SELECT * from t1;
--- 1.3/mysql-test/t/partition_range.test Tue Sep 20 19:29:52 2005
+++ 1.4/mysql-test/t/partition_range.test Thu Dec 15 20:56:08 2005
@@ -97,7 +97,7 @@
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 @@
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 @@
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 @@
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 @@
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;
| Thread |
|---|
| • bk commit into 5.1 tree (holyfoot:1.1977) | holyfoot | 15 Dec |