~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Mark Atwood
  • Date: 2011-09-14 03:30:42 UTC
  • mfrom: (2409.2.6 refactor7)
  • Revision ID: me@mark.atwood.name-20110914033042-2u0s8foaigvf62g2
mergeĀ lp:~olafvdspek/drizzle/refactor7

Show diffs side-by-side

added added

removed removed

Lines of Context:
262
262
 
263
263
bool plugin::StorageEngine::doDoesTableExist(Session&, const drizzled::identifier::Table&)
264
264
{
265
 
  std::cerr << " Engine was called for doDoesTableExist() and does not implement it: " << this->getName() << "\n";
 
265
  std::cerr << " Engine was called for doDoesTableExist() and does not implement it: " << getName() << "\n";
266
266
  assert(0);
267
267
  return false;
268
268
}