~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/archive/ha_archive.cc

  • Committer: Monty Taylor
  • Date: 2009-03-24 18:05:25 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090324180525-ok5metxsa5yor53k
First step of hton rename.

Show diffs side-by-side

added added

removed removed

Lines of Context:
151
151
 
152
152
int archive_db_init(void *p)
153
153
{
154
 
  StorageEngine *archive_hton;
 
154
  StorageEngine *archive_engine;
155
155
 
156
 
  archive_hton= (StorageEngine *)p;
157
 
  archive_hton->state= SHOW_OPTION_YES;
158
 
  archive_hton->create= archive_create_handler;
159
 
  archive_hton->flags= HTON_NO_FLAGS;
 
156
  archive_engine= (StorageEngine *)p;
 
157
  archive_engine->state= SHOW_OPTION_YES;
 
158
  archive_engine->create= archive_create_handler;
 
159
  archive_engine->flags= HTON_NO_FLAGS;
160
160
 
161
161
  /* When the engine starts up set the first version */
162
162
  global_version= 1;