From: Date: July 17 2006 12:22pm Subject: bk commit into 5.0 tree (evgen:1.2242) BUG#10977 List-Archive: http://lists.mysql.com/commits/9247 X-Bug: 10977 Message-Id: <20060717102224.A70BA11A626@moonbone.moonbone.local> Below is the list of changes that have just been committed into a local 5.0 repository of evgen. When evgen 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@stripped, 2006-07-17 14:22:21+04:00, evgen@stripped +2 -0 mysql.test, mysql.result: Corrected the test case after fixing bug#10977 mysql-test/r/mysql.result@stripped, 2006-07-17 14:21:46+04:00, evgen@stripped +4 -4 Corrected the test case after fixing bug#10977 mysql-test/t/mysql.test@stripped, 2006-07-17 14:21:29+04:00, evgen@stripped +4 -4 Corrected the test case after fixing bug#10977 # 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: evgen # Host: moonbone.local # Root: /work/10977-bug-5.0-opt-mysql --- 1.10/mysql-test/r/mysql.result 2006-07-17 14:22:24 +04:00 +++ 1.11/mysql-test/r/mysql.result 2006-07-17 14:22:24 +04:00 @@ -36,19 +36,19 @@ t1 t2 t3 - +_ Test delimiter : from command line a 1 - +_ Test delimiter :; from command line a 1 - +_ Test 'go' command(vertical output) G *************************** 1. row *************************** a: 1 - +_ Test 'go' command g a 1 --- 1.10/mysql-test/t/mysql.test 2006-07-17 14:22:24 +04:00 +++ 1.11/mysql-test/t/mysql.test 2006-07-17 14:22:24 +04:00 @@ -20,16 +20,16 @@ --disable_query_log # Test delimiter : supplied on the command line -select "Test delimiter : from command line" as " "; +select "Test delimiter : from command line" as "_"; --exec $MYSQL test --delimiter=":" -e "select * from t1:" # Test delimiter :; supplied on the command line -select "Test delimiter :; from command line" as " "; +select "Test delimiter :; from command line" as "_"; --exec $MYSQL test --delimiter=":;" -e "select * from t1:;" # Test 'go' command (vertical output) \G -select "Test 'go' command(vertical output) \G" as " "; +select "Test 'go' command(vertical output) \G" as "_"; --exec $MYSQL test -e "select * from t1\G" # Test 'go' command \g -select "Test 'go' command \g" as " "; +select "Test 'go' command \g" as "_"; --exec $MYSQL test -e "select * from t1\g" --enable_query_log drop table t1;