My Project
|
#include <table.h>
Public Types | |
enum | enum_order { ORDER_NOT_RELEVANT, ORDER_ASC, ORDER_DESC } |
Public Attributes | |
struct st_order * | next |
Item ** | item |
Item * | item_ptr |
int | counter |
enum_order | direction |
bool | in_field_list |
bool | counter_used |
bool | used_alias |
Field * | field |
char * | buff |
table_map | used |
table_map | depend_map |
Order clause list element
bool st_order::used_alias |
Tells whether this ORDER element was referenced with an alias or with an expression, in the query: SELECT a AS foo GROUP BY foo: true. SELECT a AS foo GROUP BY a: false.