~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/func.cc

  • Committer: Olaf van der Spek
  • Date: 2011-06-23 11:44:30 UTC
  • mto: This revision was merged to the branch mainline in revision 2348.
  • Revision ID: olafvdspek@gmail.com-20110623114430-no355yypk4y3icqb
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
122
122
  if (arg_count <= 2 || (args=(Item**) memory::sql_alloc(sizeof(Item*)*arg_count)))
123
123
  {
124
124
    List<Item>::iterator li(list.begin());
125
 
    Item *item;
126
125
    Item **save_args= args;
127
126
 
128
 
    while ((item=li++))
 
127
    while (Item* item=li++)
129
128
    {
130
129
      *(save_args++)= item;
131
130
      with_sum_func|=item->with_sum_func;