~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_list.h

  • Committer: Brian Aker
  • Date: 2008-10-20 04:28:21 UTC
  • mto: (492.3.21 drizzle-clean-code)
  • mto: This revision was merged to the branch mainline in revision 530.
  • Revision ID: brian@tangent.org-20081020042821-rqqdrccuu8195k3y
Second pass of thd cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
243
243
  uint32_t table_open_method;
244
244
  enum enum_schema_table_state schema_table_state;
245
245
  void set_underlying_merge();
246
 
  bool setup_underlying(Session *thd);
 
246
  bool setup_underlying(Session *session);
247
247
  void cleanup_items();
248
248
  /*
249
249
    If you change placeholder(), please check the condition in
253
253
  {
254
254
    return derived || schema_table || (create && !table->getDBStat()) || !table;
255
255
  }
256
 
  void print(Session *thd, String *str, enum_query_type query_type);
 
256
  void print(Session *session, String *str, enum_query_type query_type);
257
257
  bool set_insert_values(MEM_ROOT *mem_root);
258
258
  TableList *find_underlying_table(Table *table);
259
259
  TableList *first_leaf_for_name_resolution();
266
266
    Cleanup for re-execution in a prepared statement or a stored
267
267
    procedure.
268
268
  */
269
 
  void reinit_before_use(Session *thd);
 
269
  void reinit_before_use(Session *session);
270
270
  Item_subselect *containing_subselect();
271
271
 
272
272
  /*