~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Monty Taylor
  • Date: 2009-05-09 22:13:47 UTC
  • mto: This revision was merged to the branch mainline in revision 1009.
  • Revision ID: mordred@inaugust.com-20090509221347-l712szviusbobro0
Re-added bitset<> as a replacement for Bitmap<>

Show diffs side-by-side

added added

removed removed

Lines of Context:
3045
3045
  KEY_PART_INFO *kp_end= kp + table->key_info[keyno].key_parts;
3046
3046
  for (; kp != kp_end; kp++)
3047
3047
  {
3048
 
    if (!kp->field->part_of_key.is_set(keyno))
 
3048
    if (!kp->field->part_of_key.test(keyno))
3049
3049
      return true;
3050
3050
  }
3051
3051
  return false;