From: Date: April 5 2005 3:56pm Subject: bk commit into 5.0 tree (mskold:1.1874) BUG#9517 List-Archive: http://lists.mysql.com/internals/23670 X-Bug: 9517 Message-Id: <200504051356.j35DuqdE023041@localhost.localdomain> Below is the list of changes that have just been committed into a local 5.0 repository of marty. When marty 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.1874 05/04/05 15:56:43 mskold@stripped +1 -0 Fix Bug #9517 Condition pushdown to storage engine does not work for update/delete, post review fix, removed quick constraint sql/records.cc 1.38 05/04/05 15:56:18 mskold@stripped +1 -1 Fix Bug #9517 Condition pushdown to storage engine does not work for update/delete, post review fix, removed quick constraint # 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: mskold # Host: blowfish.ndb.mysql.com # Root: /usr/local/home/marty/MySQL/mysql-5.0 --- 1.37/sql/records.cc Mon Apr 4 21:37:42 2005 +++ 1.38/sql/records.cc Tue Apr 5 15:56:18 2005 @@ -132,7 +132,7 @@ if (thd->variables.engine_condition_pushdown && select && select->cond && select->cond->used_tables() & table->map && - !(select->quick || table->file->pushed_cond)) + !table->file->pushed_cond) table->file->cond_push(select->cond); DBUG_VOID_RETURN;