~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Stewart Smith
  • Date: 2009-06-04 07:08:43 UTC
  • mto: This revision was merged to the branch mainline in revision 1053.
  • Revision ID: stewart@flamingspork.com-20090604070843-4idap2o27btgfypc
remove handler::ha_delete_table and have StorageEngine::deleteTable instead

Show diffs side-by-side

added added

removed removed

Lines of Context:
534
534
  @retval
535
535
    !0  Error
536
536
*/
537
 
int StorageEngine::delete_table(Session *, const std::string table_path)
 
537
int StorageEngine::deleteTableImpl(Session *, const std::string table_path)
538
538
{
539
539
  int error= 0;
540
540
  int enoent_or_zero= ENOENT;                   // Error if no file was deleted
638
638
 
639
639
    path= check_lowercase_names(tmp_file, path, tmp_path);
640
640
    const std::string table_path(path);
641
 
    int tmp_error= engine->delete_table(session, table_path);
 
641
    int tmp_error= engine->deleteTable(session, table_path);
642
642
 
643
643
    if(tmp_error!=ENOENT)
644
644
    {