~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_plugin.cc

  • Committer: Monty Taylor
  • Date: 2009-03-24 21:22:31 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090324212231-5bvd7qlj4yj88ha6
Reworked transformed handlerton into class StorageEngine.

Show diffs side-by-side

added added

removed removed

Lines of Context:
89
89
plugin_type_init plugin_type_initialize[DRIZZLE_MAX_PLUGIN_TYPE_NUM]=
90
90
{
91
91
  0,  /* Daemon */
92
 
  ha_initialize_handlerton,  /* Storage Engine */
 
92
  storage_engine_initializer,  /* Storage Engine */
93
93
  initialize_schema_table,  /* Information Schema */
94
94
  initialize_udf,  /* UDF */
95
95
  0,  /* UDA */
107
107
plugin_type_init plugin_type_deinitialize[DRIZZLE_MAX_PLUGIN_TYPE_NUM]=
108
108
{
109
109
  0,  /* Daemon */
110
 
  ha_finalize_handlerton,  /* Storage Engine */
 
110
  storage_engine_finalizer,  /* Storage Engine */
111
111
  finalize_schema_table,  /* Information Schema */
112
112
  finalize_udf,  /* UDF */
113
113
  0,  /* UDA */