~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/cursor.h

  • Committer: Brian Aker
  • Date: 2010-08-17 01:34:55 UTC
  • mto: (1711.1.23 build)
  • mto: This revision was merged to the branch mainline in revision 1714.
  • Revision ID: brian@tangent.org-20100817013455-zx3nm7qilxvpwrgb
Style on structure cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
class CreateField;
68
68
class sys_var_str;
69
69
class Item_ident;
70
 
typedef struct st_sort_field SORT_FIELD;
71
70
 
72
71
typedef List<Item> List_item;
73
72
extern KEY_CREATE_INFO default_key_create_info;
640
639
/* basic stuff */
641
640
void ha_init_errors(void);
642
641
 
643
 
SORT_FIELD * make_unireg_sortorder(order_st *order, uint32_t *length,
644
 
                                   SORT_FIELD *sortorder);
 
642
class SortField;
 
643
SortField *make_unireg_sortorder(order_st *order, uint32_t *length,
 
644
                                 SortField *sortorder);
645
645
int setup_order(Session *session, Item **ref_pointer_array, TableList *tables,
646
646
                List<Item> &fields, List <Item> &all_fields, order_st *order);
647
647
int setup_group(Session *session, Item **ref_pointer_array, TableList *tables,