31
30
/* Order clause list element */
34
struct order_st *next;
35
Item **item; /* Point at item in select fields */
36
Item *item_ptr; /* Storage for initial item */
37
Item **item_copy; /* For SPs; the original item ptr */
38
int counter; /* position in SELECT list, correct
39
only if counter_used is true*/
40
bool asc; /* true if ascending */
41
bool free_me; /* true if item isn't shared */
42
bool in_field_list; /* true if in select field list */
43
bool counter_used; /* parameter was counter of columns */
44
Field *field; /* If tmp-table group */
45
char *buff; /* If tmp-table group */
32
/* Order clause list element */
36
Item **item; /* Point at item in select fields */
37
Item *item_ptr; /* Storage for initial item */
38
Item **item_copy; /* For SPs; the original item ptr */
39
int counter; /* position in SELECT list, correct
40
only if counter_used is true*/
41
bool asc; /* true if ascending */
42
bool free_me; /* true if item isn't shared */
43
bool in_field_list; /* true if in select field list */
44
bool counter_used; /* parameter was counter of columns */
45
Field *field; /* If tmp-table group */
46
char *buff; /* If tmp-table group */
46
47
table_map used, depend_map;
49
65
} /* namespace drizzled */
51
67
#endif /* DRIZZLED_ORDER_H */