~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Lee Bieber
  • Date: 2011-02-21 19:38:08 UTC
  • mfrom: (2183.2.8 list2)
  • mto: This revision was merged to the branch mainline in revision 2188.
  • Revision ID: kalebral@gmail.com-20110221193808-aunmc8urhpbr16gf
Merge Olaf - Use List::begin() and Use List::iterator instead of List_iterator_fast

Show diffs side-by-side

added added

removed removed

Lines of Context:
3823
3823
    field= static_cast<Item_field *>(f++);
3824
3824
    table= field->field->getTable();
3825
3825
    table->auto_increment_field_not_null= false;
3826
 
    f= fields;
 
3826
    f= fields.begin();
3827
3827
  }
3828
3828
 
3829
3829
  while ((field= static_cast<Item_field *>(f++)))