~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/order.h

  • Committer: tdavies
  • Date: 2010-10-31 01:09:40 UTC
  • mto: (1897.2.4 merge)
  • mto: This revision was merged to the branch mainline in revision 1899.
  • Revision ID: tdavies@molly-20101031010940-09rbefugk84b7a72
commit point

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
/* Order clause list element */
31
31
 
32
32
/* Order clause list element */
33
 
class order_st{
 
33
class Order{
34
34
public:
35
 
  struct order_st *next;
 
35
  struct Order *next;
36
36
  Item   **item;          /* Point at item in select fields */
37
37
  Item   *item_ptr;       /* Storage for initial item */
38
38
  Item   **item_copy;     /* For SPs; the original item ptr */
46
46
  char   *buff;           /* If tmp-table group */
47
47
  table_map used, depend_map;
48
48
 
49
 
  order_st():
 
49
  Order():
50
50
          next(NULL),
51
51
          item(NULL),
52
52
          item_ptr(NULL),