~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/information_engine/information_engine.cc

  • Committer: Monty Taylor
  • Date: 2009-12-25 08:50:15 UTC
  • mto: This revision was merged to the branch mainline in revision 1255.
  • Revision ID: mordred@inaugust.com-20091225085015-83sux5qsvy312gew
MEM_ROOT == memory::Root

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
static const string engine_name("INFORMATION_ENGINE");
34
34
 
35
35
 
36
 
Cursor *InformationEngine::create(TableShare &table, MEM_ROOT *mem_root)
 
36
Cursor *InformationEngine::create(TableShare &table, memory::Root *mem_root)
37
37
{
38
38
  return new (mem_root) InformationCursor(*this, table);
39
39
}