From: Date: October 12 2006 10:19am Subject: bk commit into 4.1 tree (ramil:1.2543) BUG#22913 List-Archive: http://lists.mysql.com/commits/13558 X-Bug: 22913 Message-Id: <200610120819.k9C8Ji5l080592@myoffice.izhnet.ru> Below is the list of changes that have just been committed into a local 4.1 repository of ram. When ram 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, 2006-10-12 13:19:38+05:00, ramil@stripped +1 -0 Fix for bug #22913: mysql --quick doesn't report some errors. We don't check for errors that may occur diring data printing. client/mysql.cc@stripped, 2006-10-12 13:19:35+05:00, ramil@stripped +2 -0 Fix for bug #22913: mysql --quick doesn't report some errors. - check for errors after the data output. # 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: ramil # Host: myoffice.izhnet.ru # Root: /usr/home/ram/work/bug22913/my41-bug22913 --- 1.218/client/mysql.cc 2006-10-12 13:19:45 +05:00 +++ 1.219/client/mysql.cc 2006-10-12 13:19:45 +05:00 @@ -1988,6 +1988,8 @@ com_go(String *buffer,char *line __attri (long) mysql_num_rows(result), (long) mysql_num_rows(result) == 1 ? "row" : "rows"); end_pager(); + if (mysql_errno(&mysql)) + error= put_error(&mysql); } } else if (mysql_affected_rows(&mysql) == ~(ulonglong) 0)