~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/blackhole/ha_blackhole.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:
39
39
** BLACKHOLE tables
40
40
*****************************************************************************/
41
41
 
42
 
ha_blackhole::ha_blackhole(StorageEngine *engine,
 
42
ha_blackhole::ha_blackhole(StorageEngine *engine_arg,
43
43
                           TABLE_SHARE *table_arg)
44
 
  :handler(engine, table_arg)
 
44
  :handler(engine_arg, table_arg)
45
45
{}
46
46
 
47
47