List:Internals« Previous MessageNext Message »
From:Martin Skold Date:April 7 2005 5:48pm
Subject:bk commit into 5.0 tree (mskold:1.1895)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 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://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.1895 05/04/07 19:48:00 mskold@stripped +1 -0
  Merge

  mysql-test/r/ndb_basic.result
    1.25 05/04/07 19:44:55 mskold@stripped +30 -0
    Merge

# 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-5.0

--- 1.24/mysql-test/r/ndb_basic.result	Thu Apr  7 18:37:00 2005
+++ 1.25/mysql-test/r/ndb_basic.result	Thu Apr  7 19:44:55 2005
@@ -607,3 +607,33 @@
 engine=ndb
 max_rows=1;
 drop table t1;
+create table t1
+(counter int(64) NOT NULL auto_increment,
+datavalue char(40) default 'XXXX',
+primary key (counter)
+) ENGINE=ndbcluster;
+insert into t1 (datavalue) values ('newval');
+insert into t1 (datavalue) values ('newval');
+select * from t1 order by counter;
+counter	datavalue
+1	newval
+2	newval
+insert into t1 (datavalue) select datavalue from t1 where counter < 100;
+select * from t1 order by counter;
+counter	datavalue
+1	newval
+2	newval
+3	newval
+4	newval
+insert into t1 (datavalue) select datavalue from t1 where counter < 100;
+select * from t1 order by counter;
+counter	datavalue
+1	newval
+2	newval
+3	newval
+4	newval
+35	newval
+36	newval
+37	newval
+38	newval
+drop table t1;
Thread
bk commit into 5.0 tree (mskold:1.1895)Martin Skold7 Apr