~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_lex.h

  • Committer: Mark Atwood
  • Date: 2011-06-22 20:04:22 UTC
  • mfrom: (2318.6.39 rf)
  • Revision ID: me@mark.atwood.name-20110622200422-609npl456o0e5p32
mergeĀ lp:~olafvdspek/drizzle/refactor13

Show diffs side-by-side

added added

removed removed

Lines of Context:
578
578
  bool inc_in_sum_expr();
579
579
  uint32_t get_in_sum_expr();
580
580
 
581
 
  bool add_item_to_list(Session *session, Item *item);
582
 
  bool add_group_to_list(Session *session, Item *item, bool asc);
583
 
  bool add_order_to_list(Session *session, Item *item, bool asc);
 
581
  void add_item_to_list(Session *session, Item *item);
 
582
  void add_group_to_list(Session *session, Item *item, bool asc);
 
583
  void add_order_to_list(Session *session, Item *item, bool asc);
584
584
  TableList* add_table_to_list(Session *session,
585
585
                               Table_ident *table,
586
586
                               LEX_STRING *alias,
589
589
                               List<Index_hint> *hints= 0,
590
590
                               LEX_STRING *option= 0);
591
591
  TableList* get_table_list();
592
 
  bool init_nested_join(Session *session);
 
592
  void init_nested_join(Session&);
593
593
  TableList *end_nested_join(Session *session);
594
594
  TableList *nest_last_join(Session *session);
595
595
  void add_joined_table(TableList *table);
620
620
    init_query();
621
621
    init_select();
622
622
  }
623
 
  bool setup_ref_array(Session *session, uint32_t order_group_num);
 
623
  void setup_ref_array(Session *session, uint32_t order_group_num);
624
624
  void print(Session *session, String *str);
625
625
  static void print_order(String *str, Order *order);
626
626