~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/alter_table.cc

  • Committer: Olaf van der Spek
  • Date: 2011-10-29 16:01:50 UTC
  • mto: This revision was merged to the branch mainline in revision 2456.
  • Revision ID: olafvdspek@gmail.com-20111029160150-pgioq08jmw7vg8hb
Refactor

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;