~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

updating

Show diffs side-by-side

added added

removed removed

Lines of Context:
245
245
  uint64_t id;
246
246
  CopyInfo info;
247
247
  Table *table= 0;
248
 
  List_iterator_fast<List_item> its(values_list);
 
248
  List<List_item>::iterator its(values_list);
249
249
  List_item *values;
250
250
  Name_resolution_context *context;
251
251
  Name_resolution_context_state ctx_state;
1494
1494
  TableShare share(message::Table::INTERNAL);
1495
1495
  uint32_t select_field_count= items->elements;
1496
1496
  /* Add selected items to field list */
1497
 
  List_iterator_fast<Item> it(*items);
 
1497
  List<Item>::iterator it(*items);
1498
1498
  Item *item;
1499
1499
  Field *tmp_field;
1500
1500