~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/ha_myisam.cc

  • Committer: Monty Taylor
  • Date: 2009-03-24 18:13:47 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090324181347-phblgoj913uph2hs
Rename hton to engine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
** MyISAM tables
55
55
*****************************************************************************/
56
56
 
57
 
static handler *myisam_create_handler(StorageEngine *hton,
 
57
static handler *myisam_create_handler(StorageEngine *engine,
58
58
                                      TABLE_SHARE *table,
59
59
                                      MEM_ROOT *mem_root)
60
60
{
61
 
  return new (mem_root) ha_myisam(hton, table);
 
61
  return new (mem_root) ha_myisam(engine, table);
62
62
}
63
63
 
64
64
// collect errors printed by mi_check routines
470
470
 
471
471
}
472
472
 
473
 
ha_myisam::ha_myisam(StorageEngine *hton, TABLE_SHARE *table_arg)
474
 
  :handler(hton, table_arg), file(0),
 
473
ha_myisam::ha_myisam(StorageEngine *engine, TABLE_SHARE *table_arg)
 
474
  :handler(engine, table_arg), file(0),
475
475
  int_table_flags(HA_NULL_IN_KEY |
476
476
                  HA_BINLOG_ROW_CAPABLE |
477
477
                  HA_BINLOG_STMT_CAPABLE |