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.2173 06/06/12 10:22:32 mskold@stripped +1 -0
Fix for Bug #18184 SELECT ... FOR UPDATE does not work..: Added missing parameter for
readTuples in index scan
sql/ha_ndbcluster.cc
1.255 06/06/12 10:22:06 mskold@stripped +1 -1
Fix for Bug #18184 SELECT ... FOR UPDATE does not work..: Added missing parameter
for readTuples in index scan
# 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: linux.site
# Root: /home/marty/MySQL/mysql-5.0
--- 1.254/sql/ha_ndbcluster.cc 2006-06-12 09:42:16 +02:00
+++ 1.255/sql/ha_ndbcluster.cc 2006-06-12 10:22:06 +02:00
@@ -2028,7 +2028,7 @@ int ha_ndbcluster::ordered_index_scan(co
if (!(op= trans->getNdbIndexScanOperation((NDBINDEX *)
m_index[active_index].index,
(const NDBTAB *) m_table)) ||
- op->readTuples(lm, 0, parallelism, sorted, descending, need_pk))
+ op->readTuples(lm, 0, parallelism, sorted, descending, false, need_pk))
ERR_RETURN(trans->getNdbError());
m_active_cursor= op;
} else {
| Thread |
|---|
| • bk commit into 5.0 tree (mskold:1.2173) BUG#18184 | Martin Skold | 12 Jun |