~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/alter_table.cc

  • Committer: Mark Atwood
  • Date: 2011-11-08 19:06:32 UTC
  • mfrom: (2445.1.22 rf)
  • Revision ID: me@mark.atwood.name-20111108190632-7pfvz4ggbolmlnnu
mergeĀ lp:~olafvdspek/drizzle/refactor10

Show diffs side-by-side

added added

removed removed

Lines of Context:
486
486
    List<Key_part_spec> key_parts;
487
487
    for (uint32_t j= 0; j < key_info->key_parts; j++, key_part++)
488
488
    {
489
 
      if (! key_part->field)
 
489
      if (not key_part->field)
490
490
              continue; /* Wrong field (from UNIREG) */
491
491
 
492
492
      const char *key_part_name= key_part->field->field_name;