~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/heap/ha_heap.cc

MergedĀ fromĀ Padraig.

Show diffs side-by-side

added added

removed removed

Lines of Context:
202
202
 
203
203
void ha_heap::set_keys_for_scanning(void)
204
204
{
205
 
  btree_keys.clear_all();
 
205
  btree_keys.reset();
206
206
  for (uint32_t i= 0 ; i < table->s->keys ; i++)
207
207
  {
208
208
    if (table->key_info[i].algorithm == HA_KEY_ALG_BTREE)
209
 
      btree_keys.set_bit(i);
 
209
      btree_keys.set(i);
210
210
  }
211
211
}
212
212