From: sasha Date: June 12 2001 2:26am Subject: bk commit into 3.23 tree List-Archive: http://lists.mysql.com/internals/893 Message-Id: <200106120226.f5C2QQJ13011@mysql.sashanet.com> Below is the list of changes that have just been pushed into main 3.23. repository. For information on how to access the repository see http://www.mysql.com/doc/I/n/Installing_source_tree.html ChangeSet@stripped, 2001-06-11 20:26:24-06:00, sasha@stripped send a separate commit message to internals added a test for check table BitKeeper/etc/logging_ok 1.200 01/06/11 20:26:23 sasha@stripped +1 -0 Logging to logging@stripped accepted mysql-test/r/check.result 1.1 01/06/11 20:26:21 sasha@stripped +2 -0 mysql-test/t/check.test 1.1 01/06/11 20:26:21 sasha@stripped +18 -0 BitKeeper/triggers/post-commit 1.11 01/06/11 20:26:21 sasha@stripped +18 -1 send a separate commit message to internals mysql-test/r/check.result 1.0 01/06/11 20:26:21 sasha@stripped +0 -0 BitKeeper file /home/sasha/src/bk/mysql/mysql-test/r/check.result mysql-test/t/check.test 1.0 01/06/11 20:26:21 sasha@stripped +0 -0 BitKeeper file /home/sasha/src/bk/mysql/mysql-test/t/check.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: sasha # Host: mysql.sashanet.com # Root: /home/sasha/src/bk/mysql --- 1.199/BitKeeper/etc/logging_ok Mon Jun 11 03:28:54 2001 +++ 1.200/BitKeeper/etc/logging_ok Mon Jun 11 20:26:23 2001 @@ -4,3 +4,4 @@ mwagner@stripped paul@stripped monty@stripped +sasha@stripped --- 1.10/BitKeeper/triggers/post-commit Sun May 27 00:10:31 2001 +++ 1.11/BitKeeper/triggers/post-commit Mon Jun 11 20:26:21 2001 @@ -3,6 +3,7 @@ #shift TO=dev-public@stripped FROM=$USER@stripped +INTERNALS=internals@stripped LIMIT=10000 if [ "$REAL_EMAIL" = "" ] @@ -22,7 +23,23 @@ List-ID: From: $FROM To: $TO -Subject: bk commit +Subject: bk commit into 3.23 tree + +EOF + bk changes -v -r+ + bk cset -r+ -d + ) | head -n $LIMIT | /usr/sbin/sendmail -t + echo "Notifying internals list at $INTERNALS" + ( + cat < +From: $FROM +To: $INTERNALS +Subject: bk commit into 3.23 tree + +Below is the list of changes that have just been pushed into main +3.23. repository. For information on how to access the repository +see http://www.mysql.com/doc/I/n/Installing_source_tree.html EOF bk changes -v -r+ --- New file --- +++ mysql-test/r/check.result 01/06/11 20:26:21 Table Op Msg_type Msg_text test.t1 check status OK --- New file --- +++ mysql-test/t/check.test 01/06/11 20:26:21 connect (con1,localhost,root,,); connect (con2,localhost,root,,); connection con1; drop table if exists t1; #add a lot of keys to slow down check create table t1(n int not null, key(n), key(n), key(n), key(n)); let $1=10000; while ($1) { eval insert into t1 values ($1); dec $1; } send check table t1 type=extended; connection con2; insert into t1 values (200000); connection con1; reap;