myrg_info.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小: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 "myrg_def.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. int myrg_status(MYRG_INFO *info,register MYMERGE_INFO *x,int flag)
  25. {
  26.   MYRG_TABLE *current_table;
  27.   DBUG_ENTER("myrg_status");
  28.   if (!(current_table = info->current_table) &&
  29.       info->open_tables != info->end_table)
  30.     current_table = info->open_tables;
  31.   x->recpos  = info->current_table ?
  32.     info->current_table->table->lastpos + info->current_table->file_offset :
  33.       (ulong) -1L;
  34.   if (flag != HA_STATUS_POS)
  35.   {
  36.     MYRG_TABLE *file;
  37.     info->records=info->del=info->data_file_length=0;
  38.     for (file=info->open_tables ; file != info->end_table ; file++)
  39.     {
  40.       file->file_offset=info->data_file_length;
  41.       info->data_file_length+=file->table->s->state.state.data_file_length;
  42.       info->records+=file->table->s->state.state.records;
  43.       info->del+=file->table->s->state.state.del;
  44.       DBUG_PRINT("info2",("table: %s, offset: %lu",
  45.                   file->table->filename,(ulong) file->file_offset));
  46.     }
  47.     x->records= info->records;
  48.     x->deleted= info->del;
  49.     x->data_file_length= info->data_file_length;
  50.     x->reclength= info->reclength;
  51.     x->options= info->options;
  52.     if (current_table)
  53.       x->errkey= current_table->table->errkey;
  54.     else
  55.       x->errkey= 0;
  56.     x->rec_per_key = info->rec_per_key_part;
  57.   }
  58.   DBUG_RETURN(0);
  59. }