~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-25 08:39:58 UTC
  • mto: (960.5.2 mordred)
  • mto: This revision was merged to the branch mainline in revision 964.
  • Revision ID: mordred@inaugust.com-20090325083958-5gp7pps4c9id7xol
More naming fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
198
198
}
199
199
 
200
200
 
201
 
ha_archive::ha_archive(StorageEngine *engine, TABLE_SHARE *table_arg)
202
 
  :handler(engine, table_arg), delayed_insert(0), bulk_insert(0)
 
201
ha_archive::ha_archive(StorageEngine *engine_arg, TABLE_SHARE *table_arg)
 
202
  :handler(engine_arg, table_arg), delayed_insert(0), bulk_insert(0)
203
203
{
204
204
  /* Set our original buffer from pre-allocated memory */
205
205
  buffer.set((char *)byte_buffer, IO_SIZE, system_charset_info);