~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_select.h

  • Committer: Brian Aker
  • Date: 2009-03-11 19:04:31 UTC
  • mfrom: (923.1.10 merge)
  • Revision ID: brian@tangent.org-20090311190431-sptimed1l5vk3nwu
Dead proc code (merge)

Show diffs side-by-side

added added

removed removed

Lines of Context:
491
491
  List<Item> &fields_list; ///< hold field list passed to mysql_select
492
492
  int error;
493
493
 
494
 
  order_st *order, *group_list, *proc_param; //hold parameters of mysql_select
 
494
  order_st *order, *group_list; //hold parameters of mysql_select
495
495
  COND *conds;                            // ---"---
496
496
  Item *conds_history;                    // store WHERE for explain
497
497
  TableList *tables_list;           ///<hold 'tables' parameter of mysql_select
594
594
 
595
595
  int prepare(Item ***rref_pointer_array, TableList *tables, uint32_t wind_num,
596
596
              COND *conds, uint32_t og_num, order_st *order, order_st *group,
597
 
              Item *having, order_st *proc_param, Select_Lex *select,
598
 
              Select_Lex_Unit *unit);
 
597
              Item *having, Select_Lex *select, Select_Lex_Unit *unit);
599
598
  int optimize();
600
599
  int reinit();
601
600
  void exec();