~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/row.cc

  • Committer: Lee Bieber
  • Date: 2011-02-23 15:55:11 UTC
  • mfrom: (2183.2.17 list2)
  • mto: This revision was merged to the branch mainline in revision 2195.
  • Revision ID: kalebral@gmail.com-20110223155511-b3onmo8k9d57msvn
Merge Olaf - Use Item_equal::begin() and Use List::size()

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
{
42
42
 
43
43
  //TODO: think placing 2-3 component items in item (as it done for function)
44
 
  if ((arg_count= arg.elements))
 
44
  if ((arg_count= arg.size()))
45
45
    items= (Item**) memory::sql_alloc(sizeof(Item*)*arg_count);
46
46
  else
47
47
    items= 0;