mrg_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 "mrg_def.h"
  14. ulong mrg_position(MRG_INFO *info)
  15. {
  16.   MRG_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.    (ulong) (current_table->table->lastpos +
  22.     current_table->file_offset) :
  23.    ~(ulong) 0);
  24. }
  25. /* If flag != 0 one only gets pos of last record */
  26. int mrg_info(MRG_INFO *info,register MERGE_INFO *x,int flag)
  27. {
  28.   MRG_TABLE *current_table;
  29.   DBUG_ENTER("mrg_info");
  30.   if (!(current_table = info->current_table) &&
  31.       info->open_tables != info->end_table)
  32.     current_table = info->open_tables;
  33.   x->recpos  = info->current_table ?
  34.     info->current_table->table->lastpos + info->current_table->file_offset :
  35.       (ulong) -1L;
  36.   if (flag != HA_STATUS_POS)
  37.   {
  38.     x->records  = info->records;
  39.     x->deleted  = info->del;
  40.     x->data_file_length = info->data_file_length;
  41.     x->reclength  = info->reclength;
  42.     if (current_table)
  43.       x->errkey  = current_table->table->errkey;
  44.     else
  45.     { /* No tables in MRG */
  46.       x->errkey=0;
  47.     }
  48.     x->options  = info->options;
  49.   }
  50.   DBUG_RETURN(0);
  51. }