~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.h

  • Committer: Brian Aker
  • Date: 2010-03-19 23:21:38 UTC
  • Revision ID: brian@gaz-20100319232138-mloxlzyib1iilwq5
Remove dead call.

Show diffs side-by-side

added added

removed removed

Lines of Context:
301
301
  virtual void doGetTableNames(CachedDirectory &directory,
302
302
                               std::string& db_name,
303
303
                               TableNameList &set_of_names);
304
 
  int doDropTable(Session &session,
305
 
                  TableIdentifier &identifier,
306
 
                  const std::string &table_path)
307
 
  {
308
 
    assert(not table_path.compare(identifier.getPath()));
309
 
    return doDropTable(session, identifier);
310
 
  }
311
304
 
312
305
  virtual int doDropTable(Session &session,
313
306
                          TableIdentifier &identifier)= 0;