From: Date: April 10 2006 5:30pm Subject: bk commit into 5.1 tree (cmiller:1.2308) List-Archive: http://lists.mysql.com/commits/4727 Message-Id: <20060410153052.1E2965C05D@zippy> Below is the list of changes that have just been committed into a local 5.1 repository of cmiller. When cmiller 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.2308 06/04/10 11:30:46 cmiller@zippy.(none) +1 -0 Merge zippy.(none):/home/cmiller/work/mysql/mysql-5.0__ready into zippy.(none):/home/cmiller/work/mysql/mysql-5.1-new__bug17667 mysql-test/t/mysql.test 1.10 06/04/10 11:30:40 cmiller@zippy.(none) +0 -0 Auto merged # 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: cmiller # Host: zippy.(none) # Root: /home/cmiller/work/mysql/mysql-5.1-new__bug17667/RESYNC --- 1.9/mysql-test/t/mysql.test 2006-03-07 14:00:41 -05:00 +++ 1.10/mysql-test/t/mysql.test 2006-04-10 11:30:40 -04:00 @@ -61,3 +61,9 @@ # Bug#16859 -- NULLs in columns must not truncate data as if a C-language "string". # --exec $MYSQL -t test -e "create table t1 (col1 binary(4), col2 varchar(10), col3 int); insert into t1 values ('a', 'b', 123421),('a ', '0123456789', 4), ('abcd', '', 4); select concat('>',col1,'<'), col2, col3 from t1; drop table t1;" 2>&1 + +# +# Bug#18265 -- mysql client: No longer right-justifies numeric columns +# +--exec $MYSQL -t --default-character-set utf8 test -e "create table t1 (i int, j int, k char(25) charset utf8); insert into t1 (i) values (1); insert into t1 (k) values ('<----------------------->'); insert into t1 (k) values ('<-----'); insert into t1 (k) values ('Τη γλώσσα'); insert into t1 (k) values ('ᛖᚴ ᚷᛖᛏ'); select * from t1; DROP TABLE t1;" +