~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/ha_trx_info.cc

  • Committer: Monty Taylor
  • Date: 2009-03-24 17:44:41 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090324174441-nmsq0gwjlgf7f0mt
Changed handlerton to StorageEngine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
#include <drizzled/session.h>
24
24
 
25
25
 
26
 
void Ha_trx_info::register_ha(Session_TRANS *trans, handlerton *ht_arg)
 
26
void Ha_trx_info::register_ha(Session_TRANS *trans, StorageEngine *ht_arg)
27
27
{
28
28
  assert(m_flags == 0);
29
29
  assert(m_ht == NULL);
86
86
}
87
87
 
88
88
 
89
 
handlerton *Ha_trx_info::ht() const
 
89
StorageEngine *Ha_trx_info::ht() const
90
90
{
91
91
  assert(is_started());
92
92
  return m_ht;