~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/field.cc

  • Committer: Monty Taylor
  • Date: 2009-05-08 19:07:39 UTC
  • mto: This revision was merged to the branch mainline in revision 1009.
  • Revision ID: mordred@inaugust.com-20090508190739-rwas5y9xjg1a92p6
Reverted a crap-ton of padraig's work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
931
931
        /* First usage of column */
932
932
        table->used_fields++;                     // Used to optimize loops
933
933
        /* purecov: begin inspected */
934
 
        table->covering_keys&= field->part_of_key;
 
934
        table->covering_keys.intersect(field->part_of_key);
935
935
        /* purecov: end */
936
936
      }
937
937
    }