~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/plugin/storage_engine.cc

  • Committer: Stewart Smith
  • Date: 2009-10-12 05:13:54 UTC
  • mfrom: (1178 staging)
  • mto: This revision was merged to the branch mainline in revision 1179.
  • Revision ID: stewart@flamingspork.com-20091012051354-2n7zpid9f67ddsa0
mergeĀ lp:drizzle/build

Show diffs side-by-side

added added

removed removed

Lines of Context:
617
617
 
618
618
    path= engine->checkLowercaseNames(path, tmp_path);
619
619
    const string table_path(path);
620
 
    int tmp_error= engine->deleteTable(session, table_path);
 
620
    int tmp_error= engine->doDeleteTable(session, table_path);
621
621
 
622
622
    if (tmp_error != ENOENT)
623
623
    {
890
890
  if (update_create_info)
891
891
    table.updateCreateInfo(create_info, table_proto);
892
892
 
893
 
  error= share.storage_engine->createTable(session, path, &table,
 
893
  error= share.storage_engine->doCreateTable(session, path, &table,
894
894
                                           create_info, table_proto);
895
895
  table.closefrm(false);
896
896
  if (error)