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

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. /* Remove all rows from a MyISAM table */
  14. /* This clears the status information and truncates files */
  15. #include "myisamdef.h"
  16. int mi_delete_all_rows(MI_INFO *info)
  17. {
  18.   uint i;
  19.   MYISAM_SHARE *share=info->s;
  20.   MI_STATE_INFO *state=&share->state;
  21.   DBUG_ENTER("mi_delete_all_rows");
  22.   if (share->options & HA_OPTION_READ_ONLY_DATA)
  23.   {
  24.     DBUG_RETURN(my_errno=EACCES);
  25.   }
  26.   if (_mi_readinfo(info,F_WRLCK,1))
  27.     DBUG_RETURN(my_errno);
  28.   if (_mi_mark_file_changed(info))
  29.     goto err;
  30.   info->state->records=info->state->del=state->split=0;
  31.   state->dellink = HA_OFFSET_ERROR;
  32.   state->sortkey=  (ushort) ~0;
  33.   info->state->key_file_length=share->base.keystart;
  34.   info->state->data_file_length=0;
  35.   info->state->empty=info->state->key_empty=0;
  36.   state->checksum=0;
  37.   for (i=share->base.max_key_block_length/MI_MIN_KEY_BLOCK_LENGTH ; i-- ; )
  38.     state->key_del[i]= HA_OFFSET_ERROR;
  39.   for (i=0 ; i < share->base.keys ; i++)
  40.     state->key_root[i]= HA_OFFSET_ERROR;
  41.   myisam_log_command(MI_LOG_DELETE_ALL,info,(byte*) 0,0,0);
  42.   /*
  43.     If we are using delayed keys or if the user has done changes to the tables
  44.     since it was locked then there may be key blocks in the key cache
  45.   */
  46.   flush_key_blocks(share->key_cache, share->kfile, FLUSH_IGNORE_CHANGED);
  47.   if (my_chsize(info->dfile, 0, 0, MYF(MY_WME)) ||
  48.       my_chsize(share->kfile, share->base.keystart, 0, MYF(MY_WME))  )
  49.     goto err;
  50.   VOID(_mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE));
  51.   allow_break(); /* Allow SIGHUP & SIGINT */
  52.   DBUG_RETURN(0);
  53. err:
  54.   {
  55.     int save_errno=my_errno;
  56.     VOID(_mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE));
  57.     info->update|=HA_STATE_WRITTEN; /* Buffer changed */
  58.     allow_break(); /* Allow SIGHUP & SIGINT */
  59.     DBUG_RETURN(my_errno=save_errno);
  60.   }
  61. } /* mi_delete */