~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/sum.h

  • Committer: Brian Aker
  • Date: 2010-02-14 01:56:51 UTC
  • mto: (1273.16.5 fix_is)
  • mto: This revision was merged to the branch mainline in revision 1300.
  • Revision ID: brian@gaz-20100214015651-ror9j0xu7dccz0ct
Two fixes for "make dist"

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
/* classes for sum functions */
24
24
 
25
25
 
26
 
#include "drizzled/tree.h"
 
26
#include "drizzled/my_tree.h"
27
27
#include <drizzled/hybrid_type.h>
28
28
#include <drizzled/item.h>
29
29
#include <drizzled/item/field.h>
39
39
                                    const void* key2);
40
40
 
41
41
class Select_Lex;
42
 
struct Order;
 
42
struct order_st;
43
43
 
44
44
/*
45
45
  Class Item_sum is the base class used for special expressions that SQL calls
982
982
   */
983
983
  Unique *unique_filter;
984
984
  Table *table;
985
 
  Order **order;
 
985
  order_st **order;
986
986
  Name_resolution_context *context;
987
987
  /** The number of ORDER BY items. */
988
988
  uint32_t arg_count_order;