MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
mi_delete_all.c
1 /* Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.
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; version 2 of the License.
6 
7  This program is distributed in the hope that it will be useful,
8  but WITHOUT ANY WARRANTY; without even the implied warranty of
9  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  GNU General Public License for more details.
11 
12  You should have received a copy of the GNU General Public License
13  along with this program; if not, write to the Free Software
14  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
15 
16 /* Remove all rows from a MyISAM table */
17 /* This clears the status information and truncates files */
18 
19 #include "myisamdef.h"
20 
21 int mi_delete_all_rows(MI_INFO *info)
22 {
23  uint i;
24  MYISAM_SHARE *share=info->s;
25  MI_STATE_INFO *state=&share->state;
26  DBUG_ENTER("mi_delete_all_rows");
27 
28  if (share->options & HA_OPTION_READ_ONLY_DATA)
29  {
30  DBUG_RETURN(my_errno=EACCES);
31  }
32  if (_mi_readinfo(info,F_WRLCK,1))
33  DBUG_RETURN(my_errno);
34  if (_mi_mark_file_changed(info))
35  goto err;
36 
37  info->state->records=info->state->del=state->split=0;
38  state->dellink = HA_OFFSET_ERROR;
39  state->sortkey= (ushort) ~0;
40  info->state->key_file_length=share->base.keystart;
41  info->state->data_file_length=0;
42  info->state->empty=info->state->key_empty=0;
43  info->state->checksum=0;
44 
45  for (i=share->base.max_key_block_length/MI_MIN_KEY_BLOCK_LENGTH ; i-- ; )
46  state->key_del[i]= HA_OFFSET_ERROR;
47  for (i=0 ; i < share->base.keys ; i++)
48  state->key_root[i]= HA_OFFSET_ERROR;
49 
50  myisam_log_command(MI_LOG_DELETE_ALL,info,(uchar*) 0,0,0);
51  /*
52  If we are using delayed keys or if the user has done changes to the tables
53  since it was locked then there may be key blocks in the key cache
54  */
55  flush_key_blocks(share->key_cache, share->kfile, FLUSH_IGNORE_CHANGED);
56 #ifdef HAVE_MMAP
57  if (share->file_map)
58  mi_munmap_file(info);
59 #endif
60  if (mysql_file_chsize(info->dfile, 0, 0, MYF(MY_WME)) ||
61  mysql_file_chsize(share->kfile, share->base.keystart, 0, MYF(MY_WME)))
62  goto err;
63  (void) _mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE);
64  DBUG_RETURN(0);
65 
66 err:
67  {
68  int save_errno=my_errno;
69  (void) _mi_writeinfo(info,WRITEINFO_UPDATE_KEYFILE);
70  info->update|=HA_STATE_WRITTEN; /* Buffer changed */
71  DBUG_RETURN(my_errno=save_errno);
72  }
73 } /* mi_delete */