hp_clear.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. /*
  17.   remove all records from database
  18.   Identical as hp_create() and hp_open() but used HP_SHARE* instead of name and
  19.   database remains open.
  20. */
  21. #include "heapdef.h"
  22. void heap_clear(HP_INFO *info)
  23. {
  24.   _hp_clear(info->s);
  25. }
  26. void _hp_clear(HP_SHARE *info)
  27. {
  28.   uint key;
  29.   DBUG_ENTER("_hp_clear");
  30.   if (info->block.levels)
  31.     VOID(_hp_free_level(&info->block,info->block.levels,info->block.root,
  32. (byte*) 0));
  33.   info->block.levels=0;
  34.   for (key=0 ; key < info->keys ; key++)
  35.   {
  36.     HP_BLOCK *block= &info->keydef[key].block;
  37.     if (block->levels)
  38.       VOID(_hp_free_level(block,block->levels,block->root,(byte*) 0));
  39.     block->levels=0;
  40.     block->last_allocated=0;
  41.   }
  42.   info->records=info->deleted=info->data_length=info->index_length=0;;
  43.   info->blength=1;
  44.   info->changed=0;
  45.   info->del_link=0;
  46.   DBUG_VOID_RETURN;
  47. }