~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/sum.cc

  • Committer: Nathan Williams
  • Date: 2009-06-05 22:51:06 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605225106-8xrsftpf50tdpumn
No actual code changes. Changed Create_field to CreateField to be consistent with coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
996
996
*/
997
997
bool Item_sum_distinct::setup(Session *session)
998
998
{
999
 
  List<Create_field> field_list;
1000
 
  Create_field field_def;                              /* field definition */
 
999
  List<CreateField> field_list;
 
1000
  CreateField field_def;                              /* field definition */
1001
1001
  /* It's legal to call setup() more than once when in a subquery */
1002
1002
  if (tree)
1003
1003
    return(false);