~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 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:
54
54
** MyISAM tables
55
55
*****************************************************************************/
56
56
 
57
 
static handler *myisam_create_handler(handlerton *hton,
 
57
static handler *myisam_create_handler(StorageEngine *hton,
58
58
                                      TABLE_SHARE *table,
59
59
                                      MEM_ROOT *mem_root)
60
60
{
470
470
 
471
471
}
472
472
 
473
 
ha_myisam::ha_myisam(handlerton *hton, TABLE_SHARE *table_arg)
 
473
ha_myisam::ha_myisam(StorageEngine *hton, TABLE_SHARE *table_arg)
474
474
  :handler(hton, table_arg), file(0),
475
475
  int_table_flags(HA_NULL_IN_KEY |
476
476
                  HA_BINLOG_ROW_CAPABLE |
1803
1803
 
1804
1804
static int myisam_init(void *p)
1805
1805
{
1806
 
  myisam_hton= (handlerton *)p;
 
1806
  myisam_hton= (StorageEngine *)p;
1807
1807
  myisam_hton->state= SHOW_OPTION_YES;
1808
1808
  myisam_hton->create= myisam_create_handler;
1809
1809
  myisam_hton->flags= HTON_CAN_RECREATE | HTON_SUPPORT_LOG_TABLES;