hp_info.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. /* Returns info about database status */
  17. #include "heapdef.h"
  18. byte *heap_position(HP_INFO *info)
  19. {
  20.   return ((info->update & HA_STATE_AKTIV) ? info->current_ptr :
  21.   (HEAP_PTR) 0);
  22. }
  23. #ifdef WANT_OLD_HEAP_VERSION
  24. /*
  25.   The following should NOT be used anymore as this can't be used together with
  26.    heap_rkey()
  27. */
  28. ulong heap_position_old(HP_INFO *info)
  29. {
  30.   return ((info->update & HA_STATE_AKTIV) ? info->current_record :
  31.   (ulong) ~0L);
  32. }
  33. #endif /* WANT_OLD_HEAP_CODE */
  34. /* Note that heap_info does NOT return information about the
  35.    current position anymore;  Use heap_position instead */
  36. int heap_info(reg1 HP_INFO *info,reg2 HEAPINFO *x,
  37.       int flag __attribute__((unused)))
  38. {
  39.   DBUG_ENTER("heap_info");
  40.   x->records  = info->s->records;
  41.   x->deleted  = info->s->deleted;
  42.   x->reclength  = info->s->reclength;
  43.   x->data_length = info->s->data_length;
  44.   x->index_length= info->s->index_length;
  45.   x->max_records = info->s->max_records;
  46.   x->errkey  = info->errkey;
  47.   DBUG_RETURN(0);
  48. } /* heap_info */