~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/blackhole/ha_blackhole.h

  • Committer: Brian Aker
  • Date: 2008-10-20 03:40:03 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-20081020034003-t2dcnl0ayr2ymm8k
THD -> Session rename

Show diffs side-by-side

added added

removed removed

Lines of Context:
87
87
  int index_last(unsigned char * buf);
88
88
  void position(const unsigned char *record);
89
89
  int info(uint32_t flag);
90
 
  int external_lock(THD *thd, int lock_type);
 
90
  int external_lock(Session *thd, int lock_type);
91
91
  int create(const char *name, Table *table_arg,
92
92
             HA_CREATE_INFO *create_info);
93
 
  THR_LOCK_DATA **store_lock(THD *thd,
 
93
  THR_LOCK_DATA **store_lock(Session *thd,
94
94
                             THR_LOCK_DATA **to,
95
95
                             enum thr_lock_type lock_type);
96
96
};