home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / myisam / mi_delete_all.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  66 lines

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