mi_rename.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.   Rename a table
  15. */
  16. #include "fulltext.h"
  17. int mi_rename(const char *old_name, const char *new_name)
  18. {
  19.   char from[FN_REFLEN],to[FN_REFLEN];
  20. #ifdef USE_RAID
  21.   uint raid_type=0,raid_chunks=0;
  22. #endif
  23.   DBUG_ENTER("mi_rename");
  24. #ifdef EXTRA_DEBUG
  25.   check_table_is_closed(old_name,"rename old_table");
  26.   check_table_is_closed(new_name,"rename new table2");
  27. #endif
  28. #ifdef USE_RAID
  29.   {
  30.     MI_INFO *info;
  31.     if (!(info=mi_open(old_name, O_RDONLY, 0)))
  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(old_name,"rename raidcheck");
  39. #endif
  40. #endif /* USE_RAID */
  41.   fn_format(from,old_name,"",MI_NAME_IEXT,4);
  42.   fn_format(to,new_name,"",MI_NAME_IEXT,4);
  43.   if (my_rename_with_symlink(from, to, MYF(MY_WME)))
  44.     DBUG_RETURN(my_errno);
  45.   fn_format(from,old_name,"",MI_NAME_DEXT,4);
  46.   fn_format(to,new_name,"",MI_NAME_DEXT,4);
  47. #ifdef USE_RAID
  48.   if (raid_type)
  49.     DBUG_RETURN(my_raid_rename(from, to, raid_chunks, MYF(MY_WME)) ? my_errno :
  50. 0);
  51. #endif
  52.   DBUG_RETURN(my_rename_with_symlink(from, to,MYF(MY_WME)) ? my_errno : 0);
  53. }