From: konstantin Date: December 7 2005 6:16pm Subject: bk commit into 5.0 tree (konstantin:1.1989) List-Archive: http://lists.mysql.com/commits/24 Message-Id: <20051207181642.68FF97348@dragonfly.local> Below is the list of changes that have just been committed into a local 5.0 repository of kostja. When kostja 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.1989 05/12/07 21:16:04 konstantin@stripped +1 -0 Fix a compilation failure. sql/sp_head.cc 1.201 05/12/07 21:15:46 konstantin@stripped +2 -2 Fix a compilation failure. # 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: konstantin # Host: dragonfly.local # Root: /opt/local/work/mysql-5.0-root --- 1.200/sql/sp_head.cc 2005-12-07 17:17:37 +03:00 +++ 1.201/sql/sp_head.cc 2005-12-07 21:15:46 +03:00 @@ -1518,8 +1518,8 @@ Item_func_set_user_var is not fixed after construction, call fix_fields(). */ - if ((ret= test(!suv || suv->fix_fields(thd, &item) || - suv->check() || suv->update()))) + if ((err_status= test(!suv || suv->fix_fields(thd, &item) || + suv->check() || suv->update()))) break; } }