From: Date: September 18 2006 9:24am Subject: bk commit into 5.0 tree (mskold:1.2268) BUG#21056 List-Archive: http://lists.mysql.com/commits/12102 X-Bug: 21056 Message-Id: <20060918072437.C6C3E1B18EC@linux.site> 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@stripped, 2006-09-18 09:24:30+02:00, mskold@stripped +1 -0 Bug #21056 ndb pushdown equal/setValue error on datetime: thread safe bitmap not needed sql/ha_ndbcluster.h@stripped, 2006-09-18 09:24:21+02:00, mskold@stripped +3 -3 Bug #21056 ndb pushdown equal/setValue error on datetime: thread safe bitmap not needed # 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: /windows/Linux_space/MySQL/mysql-5.0 --- 1.102/sql/ha_ndbcluster.h 2006-09-18 09:24:37 +02:00 +++ 1.103/sql/ha_ndbcluster.h 2006-09-18 09:24:37 +02:00 @@ -365,9 +365,9 @@ class Ndb_cond_traverse_context skip(0), collation(NULL), rewrite_stack(NULL) { // Allocate type checking bitmaps - bitmap_init(&expect_mask, 0, 512, TRUE); - bitmap_init(&expect_field_type_mask, 0, 512, TRUE); - bitmap_init(&expect_field_result_mask, 0, 512, TRUE); + bitmap_init(&expect_mask, 0, 512, FALSE); + bitmap_init(&expect_field_type_mask, 0, 512, FALSE); + bitmap_init(&expect_field_result_mask, 0, 512, FALSE); if (stack) cond_ptr= stack->ndb_cond;