From: Date: January 19 2007 11:07am Subject: bk commit into 5.0 tree (msvensson:1.2371) BUG#15518 List-Archive: http://lists.mysql.com/commits/18424 X-Bug: 15518 Message-Id: <200701191007.l0JA7PDY028950@pilot> Below is the list of changes that have just been committed into a local 5.0 repository of msvensson. When msvensson 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, 2007-01-19 11:07:20+01:00, msvensson@stripped +1 -0 Bug #15518 Reusing a stmt that has failed during prepare does not clear error - Additional patch removing check for mysql_errno on already closed mysql1 tests/mysql_client_test.c@stripped, 2007-01-19 11:07:19+01:00, msvensson@stripped +0 -1 No need to check mysql_errno of mysql1 which has already been closed. # 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: msvensson # Host: pilot.mysql.com # Root: /home/msvensson/mysql/mysql-5.0-maint --- 1.220/tests/mysql_client_test.c 2007-01-17 13:57:43 +01:00 +++ 1.221/tests/mysql_client_test.c 2007-01-19 11:07:19 +01:00 @@ -12923,7 +12923,6 @@ DIE_UNLESS(rc && mysql_stmt_errno(stmt)); mysql_stmt_close(stmt); - DIE_UNLESS(mysql_errno(mysql1)); }