List:Internals« Previous MessageNext Message »
From:Martin Skold Date:July 20 2004 12:50pm
Subject:bk commit into 4.1 tree (mskold:1.1918)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of marty. When marty 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://www.mysql.com/doc/I/n/Installing_source_tree.html

ChangeSet
  1.1918 04/07/20 14:50:22 mskold@stripped +2 -0
  Added test for bug#4595

  mysql-test/r/ndb_index_ordered.result
    1.5 04/07/20 14:49:55 mskold@stripped +9 -0
    Added test for bug#4595

  mysql-test/t/ndb_index_ordered.test
    1.5 04/07/20 14:49:54 mskold@stripped +2 -1
    Added test for bug#4595

# 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:	mskold
# Host:	blowfish.ndb.mysql.com
# Root:	/usr/local/home/marty/MySQL/mysql-4.1-ndb

--- 1.4/mysql-test/r/ndb_index_ordered.result	Mon Jul  5 07:14:23 2004
+++ 1.5/mysql-test/r/ndb_index_ordered.result	Tue Jul 20 14:49:55 2004
@@ -82,6 +82,15 @@
 4	5	12
 5	6	12
 6	7	12
+update t1 set b = b + 1 where b > 4 and b < 7;
+select * from t1 order by a;
+a	b	c
+1	2	13
+2	3	13
+3	4	12
+4	6	12
+5	7	12
+6	7	12
 drop table t1;
 CREATE TABLE t1 (
 a int unsigned NOT NULL PRIMARY KEY,

--- 1.4/mysql-test/t/ndb_index_ordered.test	Mon Jul  5 07:14:23 2004
+++ 1.5/mysql-test/t/ndb_index_ordered.test	Tue Jul 20 14:49:54 2004
@@ -42,7 +42,8 @@
 select * from t1 order by a;
 update t1 set c = 13 where b <= 3;
 select * from t1 order by a;
-
+update t1 set b = b + 1 where b > 4 and b < 7;
+select * from t1 order by a;
 
 #
 # Delete using ordered index scan
Thread
bk commit into 4.1 tree (mskold:1.1918)Martin Skold20 Jul