mi_delete_table.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. /*
  14.   deletes a table
  15. */
  16. #include "fulltext.h"
  17. int mi_delete_table(const char *name)
  18. {
  19.   char from[FN_REFLEN];
  20. #ifdef USE_RAID
  21.   uint raid_type=0,raid_chunks=0;
  22. #endif
  23.   DBUG_ENTER("mi_delete_table");
  24. #ifdef EXTRA_DEBUG
  25.   check_table_is_closed(name,"delete");
  26. #endif
  27. #ifdef USE_RAID
  28.   {
  29.     MI_INFO *info;
  30.     /* we use 'open_for_repair' to be able to delete a crashed table */
  31.     if (!(info=mi_open(name, O_RDONLY, HA_OPEN_FOR_REPAIR)))
  32.       DBUG_RETURN(my_errno);
  33.     raid_type =      info->s->base.raid_type;
  34.     raid_chunks =    info->s->base.raid_chunks;
  35.     mi_close(info);
  36.   }
  37. #ifdef EXTRA_DEBUG
  38.   check_table_is_closed(name,"delete");
  39. #endif
  40. #endif /* USE_RAID */
  41.   fn_format(from,name,"",MI_NAME_IEXT,4);
  42.   if (my_delete_with_symlink(from, MYF(MY_WME)))
  43.     DBUG_RETURN(my_errno);
  44.   fn_format(from,name,"",MI_NAME_DEXT,4);
  45. #ifdef USE_RAID
  46.   if (raid_type)
  47.     DBUG_RETURN(my_raid_delete(from, raid_chunks, MYF(MY_WME)) ? my_errno : 0);
  48. #endif
  49.   DBUG_RETURN(my_delete_with_symlink(from, MYF(MY_WME)) ? my_errno : 0);
  50. }