From: Date: June 2 2005 7:00pm Subject: bk commit into 5.0 tree (igor:1.1951) BUG#9939 List-Archive: http://lists.mysql.com/internals/25524 X-Bug: 9939 Message-Id: <20050602170051.B95AA1541AE@rurik.mysql.com> Below is the list of changes that have just been committed into a local 5.0 repository of igor. When igor 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.1951 05/06/02 10:00:32 igor@stripped +1 -0 item_func.h: Identation correction for the fix of bug #9939. sql/item_func.h 1.117 05/06/02 09:59:36 igor@stripped +3 -3 Identation correction for the fix of bug #9939. # 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: igor # Host: igor-inspiron.creware.com # Root: /home/igor/dev/mysql-5.0-0 --- 1.116/sql/item_func.h Thu Jun 2 07:23:56 2005 +++ 1.117/sql/item_func.h Thu Jun 2 09:59:36 2005 @@ -189,13 +189,13 @@ protected: Item_result hybrid_type; public: - Item_func_numhybrid(Item *a) :Item_func(a),hybrid_type(REAL_RESULT) + Item_func_numhybrid(Item *a) :Item_func(a), hybrid_type(REAL_RESULT) {} Item_func_numhybrid(Item *a,Item *b) - :Item_func(a,b),hybrid_type(REAL_RESULT) + :Item_func(a,b), hybrid_type(REAL_RESULT) {} Item_func_numhybrid(List &list) - :Item_func(list),hybrid_type(REAL_RESULT) + :Item_func(list), hybrid_type(REAL_RESULT) {} enum Item_result result_type () const { return hybrid_type; }