merge.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL 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. /* This file should be included when using merge_isam_funktions */
  14. /* Author: Michael Widenius */
  15. #ifndef _merge_h
  16. #define _merge_h
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #ifndef _my_base_h
  21. #include <my_base.h>
  22. #endif
  23. #ifndef _nisam_h
  24. #include <nisam.h>
  25. #endif
  26. #define MRG_NAME_EXT ".MRG"
  27. /* Param to/from mrg_info */
  28. typedef struct st_mrg_info /* Struct from h_info */
  29. {
  30.   ulonglong records; /* Records in database */
  31.   ulonglong deleted; /* Deleted records in database */
  32.   ulonglong recpos; /* Pos for last used record */
  33.   ulonglong data_file_length;
  34.   uint reclength; /* Recordlength */
  35.   int errkey; /* With key was dupplicated on err */
  36.   uint options; /* HA_OPTION_... used */
  37. } MERGE_INFO;
  38. typedef struct st_mrg_table_info
  39. {
  40.   N_INFO *table;
  41.   ulonglong file_offset;
  42. } MRG_TABLE;
  43. typedef struct st_merge
  44. {
  45.   MRG_TABLE *open_tables,*current_table,*end_table,*last_used_table;
  46.   ulonglong records; /* records in tables */
  47.   ulonglong del; /* Removed records */
  48.   ulonglong data_file_length;
  49.   uint  tables,options,reclength;
  50.   my_bool cache_in_use;
  51.   LIST open_list;
  52. } MRG_INFO;
  53. typedef ulong mrg_off_t;
  54. /* Prototypes for merge-functions */
  55. extern int mrg_close(MRG_INFO *file);
  56. extern int mrg_delete(MRG_INFO *file,const byte *buff);
  57. extern MRG_INFO *mrg_open(const char *name,int mode,int wait_if_locked);
  58. extern int mrg_panic(enum ha_panic_function function);
  59. extern int mrg_rfirst(MRG_INFO *file,byte *buf,int inx);
  60. extern int mrg_rkey(MRG_INFO *file,byte *buf,int inx,const byte *key,
  61.        uint key_len, enum ha_rkey_function search_flag);
  62. extern int mrg_rrnd(MRG_INFO *file,byte *buf, mrg_off_t pos);
  63. extern int mrg_rsame(MRG_INFO *file,byte *record,int inx);
  64. extern int mrg_update(MRG_INFO *file,const byte *old,const byte *new_rec);
  65. extern int mrg_info(MRG_INFO *file,MERGE_INFO *x,int flag);
  66. extern int mrg_lock_database(MRG_INFO *file,int lock_type);
  67. extern int mrg_create(const char *name,const char **table_names);
  68. extern int mrg_extra(MRG_INFO *file,enum ha_extra_function function);
  69. extern ha_rows mrg_records_in_range(MRG_INFO *info,int inx,
  70.     const byte *start_key,uint start_key_len,
  71.     enum ha_rkey_function start_search_flag,
  72.     const byte *end_key,uint end_key_len,
  73.     enum ha_rkey_function end_search_flag);
  74. extern mrg_off_t mrg_position(MRG_INFO *info);
  75. #ifdef __cplusplus
  76. }
  77. #endif
  78. #endif