mi_delete_table.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

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