Commit d29a8f09 authored by unknown's avatar unknown

Bug #21056 ndb pushdown equal/setValue error on datetime: thread safe bitmap not needed

parent 73db46fb
...@@ -365,9 +365,9 @@ class Ndb_cond_traverse_context ...@@ -365,9 +365,9 @@ class Ndb_cond_traverse_context
skip(0), collation(NULL), rewrite_stack(NULL) skip(0), collation(NULL), rewrite_stack(NULL)
{ {
// Allocate type checking bitmaps // Allocate type checking bitmaps
bitmap_init(&expect_mask, 0, 512, TRUE); bitmap_init(&expect_mask, 0, 512, FALSE);
bitmap_init(&expect_field_type_mask, 0, 512, TRUE); bitmap_init(&expect_field_type_mask, 0, 512, FALSE);
bitmap_init(&expect_field_result_mask, 0, 512, TRUE); bitmap_init(&expect_field_result_mask, 0, 512, FALSE);
if (stack) if (stack)
cond_ptr= stack->ndb_cond; cond_ptr= stack->ndb_cond;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment