Below is the list of changes that have just been committed into a local
5.1 repository of tomas. When tomas 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.2207 06/03/02 08:44:11 tomas@stripped +2 -0
fixed order by in test
mysql-test/t/ndb_partition_range.test
1.8 06/03/02 08:44:03 tomas@stripped +3 -3
fixed order by in test
mysql-test/r/ndb_partition_range.result
1.11 06/03/02 08:44:03 tomas@stripped +3 -3
fixed order by in test
# 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: tomas
# Host: poseidon.ndb.mysql.com
# Root: /home/tomas/mysql-5.1-new
--- 1.10/mysql-test/r/ndb_partition_range.result 2006-03-01 15:24:38 +01:00
+++ 1.11/mysql-test/r/ndb_partition_range.result 2006-03-02 08:44:03 +01:00
@@ -246,17 +246,17 @@
PARTITION part2 VALUES LESS THAN (1000));
INSERT INTO t1 VALUES(1, '---1---');
INSERT INTO t1 VALUES(2, '---2---');
-select * from t1;
+select * from t1 order by f1;
f1 f2
1 ---1---
2 ---2---
UPDATE t1 SET f1 = f1 + 4 WHERE f1 = 2;
-select * from t1;
+select * from t1 order by f1;
f1 f2
1 ---1---
6 ---2---
UPDATE t1 SET f1 = f1 + 4 WHERE f1 = 1;
-select * from t1;
+select * from t1 order by f1;
f1 f2
5 ---1---
6 ---2---
--- 1.7/mysql-test/t/ndb_partition_range.test 2006-03-01 15:24:38 +01:00
+++ 1.8/mysql-test/t/ndb_partition_range.test 2006-03-02 08:44:03 +01:00
@@ -252,9 +252,9 @@
PARTITION part2 VALUES LESS THAN (1000));
INSERT INTO t1 VALUES(1, '---1---');
INSERT INTO t1 VALUES(2, '---2---');
-select * from t1;
+select * from t1 order by f1;
UPDATE t1 SET f1 = f1 + 4 WHERE f1 = 2;
-select * from t1;
+select * from t1 order by f1;
UPDATE t1 SET f1 = f1 + 4 WHERE f1 = 1;
-select * from t1;
+select * from t1 order by f1;
drop table t1;
| Thread |
|---|
| • bk commit into 5.1 tree (tomas:1.2207) | tomas | 2 Mar |