myrg_info.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "mymrgdef.h"
  14. ulonglong myrg_position(MYRG_INFO *info)
  15. {
  16.   MYRG_TABLE *current_table;
  17.   if (!(current_table = info->current_table) &&
  18.       info->open_tables != info->end_table)
  19.     current_table = info->open_tables;
  20.   return  current_table ?
  21.     current_table->table->lastpos + current_table->file_offset :
  22.     ~(ulonglong) 0;
  23. }
  24. /* If flag != 0 one only gets pos of last record */
  25. int myrg_status(MYRG_INFO *info,register MYMERGE_INFO *x,int flag)
  26. {
  27.   MYRG_TABLE *current_table;
  28.   DBUG_ENTER("myrg_status");
  29.   if (!(current_table = info->current_table) &&
  30.       info->open_tables != info->end_table)
  31.     current_table = info->open_tables;
  32.   x->recpos  = info->current_table ?
  33.     info->current_table->table->lastpos + info->current_table->file_offset :
  34.       (ulong) -1L;
  35.   if (flag != HA_STATUS_POS)
  36.   {
  37.     MYRG_TABLE *file;
  38.     info->records=info->del=info->data_file_length=0;
  39.     for (file=info->open_tables ; file != info->end_table ; file++)
  40.     {
  41.       file->file_offset=info->data_file_length;
  42.       info->data_file_length+=file->table->s->state.state.data_file_length;
  43.       info->records+=file->table->s->state.state.records;
  44.       info->del+=file->table->s->state.state.del;
  45.       DBUG_PRINT("info2",("table: %s, offset: %lu",
  46.                   file->table->filename,(ulong) file->file_offset));
  47.     }
  48.     x->records  = info->records;
  49.     x->deleted  = info->del;
  50.     x->data_file_length = info->data_file_length;
  51.     x->reclength  = info->reclength;
  52.     x->options  = info->options;
  53.     if (current_table)
  54.       x->errkey  = current_table->table->errkey;
  55.     else
  56.       x->errkey=0;
  57.   }
  58.   DBUG_RETURN(0);
  59. }