~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.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:
914
914
        /* First usage of column */
915
915
        table->used_fields++;                     // Used to optimize loops
916
916
        /* purecov: begin inspected */
917
 
        table->covering_keys.intersect(field->part_of_key);
 
917
        table->covering_keys&= field->part_of_key;
918
918
        /* purecov: end */
919
919
      }
920
920
    }