~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Stewart Smith
  • Date: 2009-07-20 13:29:16 UTC
  • mto: (1093.1.29 captain)
  • mto: This revision was merged to the branch mainline in revision 1102.
  • Revision ID: stewart@flamingspork.com-20090720132916-34ve6x6tucawnntl
refactor ha_resolve_by_name to accept std::string instead of LEX_STRING

Show diffs side-by-side

added added

removed removed

Lines of Context:
305
305
 
306
306
/* lookups */
307
307
StorageEngine *ha_default_storage_engine(Session *session);
308
 
StorageEngine *ha_resolve_by_name(Session *session, const LEX_STRING *name);
 
308
StorageEngine *ha_resolve_by_name(Session *session, std::string find_str);
 
309
 
309
310
handler *get_new_handler(TableShare *share, MEM_ROOT *alloc,
310
311
                         StorageEngine *db_type);
311
312
const std::string ha_resolve_storage_engine_name(const StorageEngine *db_type);