mi_delete_all.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. /* Remove all rows from a MyISAM table */
  17. /* This only clears the status information;  The files are not truncated */
  18. #include "myisamdef.h"
  19. int mi_delete_all_rows(MI_INFO *info)
  20. {
  21.   uint i;
  22.   MYISAM_SHARE *share=info->s;
  23.   MI_STATE_INFO *state=&share->state;
  24.   DBUG_ENTER("mi_delete_all_rows");
  25.   if (share->options & HA_OPTION_READ_ONLY_DATA)
  26.   {
  27.     DBUG_RETURN(my_errno=EACCES);
  28.   }
  29.   if (_mi_readinfo(info,F_WRLCK,1))
  30.     DBUG_RETURN(my_errno);
  31.   if (_mi_mark_file_changed(info))
  32.     goto err;
  33.   info->state->records=info->state->del=state->split=0;
  34.   state->dellink = HA_OFFSET_ERROR;
  35.   state->sortkey=  (ushort) ~0;
  36.   info->state->key_file_length=share->base.keystart;
  37.   info->state->data_file_length=0;
  38.   info->state->empty=info->state->key_empty=0;
  39.   state->checksum=0;
  40.   for (i=share->base.max_key_block_length/MI_KEY_BLOCK_LENGTH ; i-- ; )
  41.     state->key_del[i]= HA_OFFSET_ERROR;
  42.   for (i=0 ; i < share->base.keys ; i++)
  43.     state->key_root[i]= HA_OFFSET_ERROR;
  44.   myisam_log_command(MI_LOG_DELETE_ALL,info,(byte*) 0,0,0);
  45.   VOID(_mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE));
  46.   allow_break(); /* Allow SIGHUP & SIGINT */
  47.   DBUG_RETURN(0);
  48. err:
  49.   {
  50.     int save_errno=my_errno;
  51.     VOID(_mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE));
  52.     info->update|=HA_STATE_WRITTEN; /* Buffer changed */
  53.     allow_break(); /* Allow SIGHUP & SIGINT */
  54.     DBUG_RETURN(my_errno=save_errno);
  55.   }
  56. } /* mi_delete */