From: Date: May 23 2007 12:00pm Subject: bk commit into 5.0 tree (mhansson:1.2491) BUG#23856 List-Archive: http://lists.mysql.com/commits/27192 X-Bug: 23856 Message-Id: <200705231000.l4NA0SF2008732@dl145s.mysql.com> Below is the list of changes that have just been committed into a local 5.0 repository of mhansson. When mhansson 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, 2007-05-23 12:00:18+02:00, mhansson@stripped +1 -0 Bug #23856: GROUP_CONCAT and ORDER BY: junk from previous rows for query on I_S This is a patch to get rid of some warnings about comparisons between singed and unsigned ints, which turn up on sapsrv1 and sapsrv2. sql/field.h@stripped, 2007-05-23 12:00:16+02:00, mhansson@stripped +1 -1 Bug#23856: Changed the type of MAX_SIZE to unsigned int. # 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: mhansson # Host: dl145s.mysql.com # Root: /users/mhansson/mysql/push/bug23856/my50-bug23856 --- 1.202/sql/field.h 2007-05-21 10:27:31 +02:00 +++ 1.203/sql/field.h 2007-05-23 12:00:16 +02:00 @@ -1112,7 +1112,7 @@ public: The maximum space available in a Field_varstring, in bytes. See length_bytes. */ - static const int MAX_SIZE= UINT_MAX16; + static const uint MAX_SIZE= UINT_MAX16; /* Store number of bytes used to store length (1 or 2) */ uint32 length_bytes; Field_varstring(char *ptr_arg,