~mordred/drizzle/add-drizzle-namespace

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Brian Aker
  • Date: 2009-11-16 20:50:08 UTC
  • mfrom: (1220.2.1 engine-flags)
  • mto: This revision was merged to the branch mainline in revision 1221.
  • Revision ID: brian@gaz-20091116205008-ef8du4jreitoxvjz
Merge Brian (first pass of this cleanup)

Show diffs side-by-side

added added

removed removed

Lines of Context:
777
777
 
778
778
Cursor *plugin::StorageEngine::getCursor(TableShare &share, MEM_ROOT *alloc)
779
779
{
780
 
  Cursor *file;
781
 
 
782
780
  assert(enabled);
783
 
 
784
 
  if ((file= create(share, alloc)))
785
 
    file->init();
786
 
  return file;
 
781
  return create(share, alloc);
787
782
}
788
783
 
789
784
/**