List:Commits« Previous MessageNext Message »
From:ramil Date:October 6 2006 10:35am
Subject:bk commit into 4.1 tree (ramil:1.2543) BUG#22913
View as plain text  
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-06 15:35:08+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 occure diring data printing.

  client/mysql.cc@stripped, 2006-10-06 15:35:04+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-06 15:35:13 +05:00
+++ 1.219/client/mysql.cc	2006-10-06 15:35:13 +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)
Thread
bk commit into 4.1 tree (ramil:1.2543) BUG#22913ramil6 Oct