~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/row.cc

  • Committer: Brian Aker
  • Date: 2011-02-18 16:48:57 UTC
  • mfrom: (2180.1.3 drizzle-staging)
  • Revision ID: brian@tangent.org-20110218164857-4n61en8wai9c91gi
Rollup all of Olaf's branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    items= (Item**) memory::sql_alloc(sizeof(Item*)*arg_count);
46
46
  else
47
47
    items= 0;
48
 
  List_iterator<Item> li(arg);
 
48
  List<Item>::iterator li(arg);
49
49
  uint32_t i= 0;
50
50
  Item *item;
51
51
  while ((item= li++))