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

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. #ifndef _myisammrg_h
  15. #define _myisammrg_h
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #ifndef _my_base_h
  20. #include <my_base.h>
  21. #endif
  22. #ifndef _myisam_h
  23. #include <myisam.h>
  24. #endif
  25. #include <queues.h>
  26. #define MYRG_NAME_EXT ".MRG"
  27. /* In which table to INSERT rows */
  28. #define MERGE_INSERT_DISABLED 0
  29. #define MERGE_INSERT_TO_FIRST 1
  30. #define MERGE_INSERT_TO_LAST 2
  31. extern TYPELIB merge_insert_method;
  32. /* Param to/from myrg_info */
  33. typedef struct st_mymerge_info /* Struct from h_info */
  34. {
  35.   ulonglong records; /* Records in database */
  36.   ulonglong deleted; /* Deleted records in database */
  37.   ulonglong recpos; /* Pos for last used record */
  38.   ulonglong data_file_length;
  39.   uint reclength; /* Recordlength */
  40.   int errkey; /* With key was dupplicated on err */
  41.   uint options; /* HA_OPTION_... used */
  42.   ulong *rec_per_key; /* for sql optimizing */
  43. } MYMERGE_INFO;
  44. typedef struct st_myrg_table_info
  45. {
  46.   struct st_myisam_info *table;
  47.   ulonglong file_offset;
  48. } MYRG_TABLE;
  49. typedef struct st_myrg_info
  50. {
  51.   MYRG_TABLE *open_tables,*current_table,*end_table,*last_used_table;
  52.   ulonglong records; /* records in tables */
  53.   ulonglong del; /* Removed records */
  54.   ulonglong data_file_length;
  55.   ulong  cache_size;
  56.   uint  merge_insert_method;
  57.   uint  tables,options,reclength,keys;
  58.   my_bool cache_in_use;
  59.   LIST  open_list;
  60.   QUEUE  by_key;
  61.   ulong *rec_per_key_part; /* for sql optimizing */
  62. } MYRG_INFO;
  63. /* Prototypes for merge-functions */
  64. extern int myrg_close(MYRG_INFO *file);
  65. extern int myrg_delete(MYRG_INFO *file,const byte *buff);
  66. extern MYRG_INFO *myrg_open(const char *name,int mode,int wait_if_locked);
  67. extern int myrg_panic(enum ha_panic_function function);
  68. extern int myrg_rfirst(MYRG_INFO *file,byte *buf,int inx);
  69. extern int myrg_rlast(MYRG_INFO *file,byte *buf,int inx);
  70. extern int myrg_rnext(MYRG_INFO *file,byte *buf,int inx);
  71. extern int myrg_rprev(MYRG_INFO *file,byte *buf,int inx);
  72. extern int myrg_rnext_same(MYRG_INFO *file,byte *buf);
  73. extern int myrg_rkey(MYRG_INFO *file,byte *buf,int inx,const byte *key,
  74.        uint key_len, enum ha_rkey_function search_flag);
  75. extern int myrg_rrnd(MYRG_INFO *file,byte *buf,ulonglong pos);
  76. extern int myrg_rsame(MYRG_INFO *file,byte *record,int inx);
  77. extern int myrg_update(MYRG_INFO *file,const byte *old,byte *new_rec);
  78. extern int myrg_write(MYRG_INFO *info,byte *rec);
  79. extern int myrg_status(MYRG_INFO *file,MYMERGE_INFO *x,int flag);
  80. extern int myrg_lock_database(MYRG_INFO *file,int lock_type);
  81. extern int myrg_create(const char *name, const char **table_names,
  82.                        uint insert_method, my_bool fix_names);
  83. extern int myrg_extra(MYRG_INFO *file,enum ha_extra_function function,
  84.       void *extra_arg);
  85. extern void myrg_extrafunc(MYRG_INFO *info,invalidator_by_filename inv);
  86. extern ha_rows myrg_records_in_range(MYRG_INFO *info,int inx,
  87.                                      key_range *min_key, key_range *max_key);
  88. extern ulonglong myrg_position(MYRG_INFO *info);
  89. #ifdef __cplusplus
  90. }
  91. #endif
  92. #endif