Below is the list of changes that have just been committed into a local
5.0 repository of bell. When bell 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.2094 06/03/04 00:01:34 bell@stripped +1 -0
Fixed incorrect using of constant.
sql/sql_update.cc
1.187 06/03/04 00:01:25 bell@stripped +2 -2
Fixed incorrect using of STRING_BUFFER_USUAL_SIZE
(which posibly can lead to cutting off some
translations of the message).
# 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: bell
# Host: book.local
# Root: /Users/bell/mysql/bk/work-5.0
--- 1.186/sql/sql_update.cc 2006-02-25 17:46:27 +02:00
+++ 1.187/sql/sql_update.cc 2006-03-04 00:01:25 +02:00
@@ -552,7 +552,7 @@
if (error < 0)
{
- char buff[STRING_BUFFER_USUAL_SIZE];
+ char buff[ERRMSGSIZE + 20];
sprintf(buff, ER(ER_UPDATE_INFO), (ulong) found, (ulong) updated,
(ulong) thd->cuted_fields);
thd->row_count_func=
@@ -1473,7 +1473,7 @@
bool multi_update::send_eof()
{
- char buff[STRING_BUFFER_USUAL_SIZE];
+ char buff[ERRMSGSIZE + 20];
thd->proc_info="updating reference tables";
/* Does updates for the last n - 1 tables, returns 0 if ok */
| Thread |
|---|
| • bk commit into 5.0 tree (bell:1.2094) | sanja | 3 Mar |