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

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. #ifdef USE_PRAGMA_INTERFACE
  14. #pragma interface /* gcc class implementation */
  15. #endif
  16. /* class for the the myisam merge handler */
  17. #include <myisammrg.h>
  18. class ha_myisammrg: public handler
  19. {
  20.   MYRG_INFO *file;
  21.  public:
  22.   ha_myisammrg(TABLE *table): handler(table), file(0) {}
  23.   ~ha_myisammrg() {}
  24.   const char *table_type() const { return "MRG_MyISAM"; }
  25.   const char **bas_ext() const;
  26.   const char *index_type(uint key_number);
  27.   ulong table_flags() const
  28.   {
  29.     return (HA_REC_NOT_IN_SEQ | HA_AUTO_PART_KEY | HA_READ_RND_SAME |
  30.     HA_NULL_IN_KEY | HA_CAN_INDEX_BLOBS | HA_FILE_BASED |
  31.             HA_CAN_INSERT_DELAYED | HA_ANY_INDEX_MAY_BE_UNIQUE);
  32.   }
  33.   ulong index_flags(uint inx, uint part, bool all_parts) const
  34.   {
  35.     return ((table->key_info[inx].algorithm == HA_KEY_ALG_FULLTEXT) ?
  36.             0 : HA_READ_NEXT | HA_READ_PREV | HA_READ_RANGE |
  37.             HA_READ_ORDER | HA_KEYREAD_ONLY);
  38.   }
  39.   uint max_supported_keys()          const { return MI_MAX_KEY; }
  40.   uint max_supported_key_length()    const { return MI_MAX_KEY_LENGTH; }
  41.   uint max_supported_key_part_length() const { return MI_MAX_KEY_LENGTH; }
  42.   double scan_time()
  43.     { return ulonglong2double(data_file_length) / IO_SIZE + file->tables; }
  44.   int open(const char *name, int mode, uint test_if_locked);
  45.   int close(void);
  46.   int write_row(byte * buf);
  47.   int update_row(const byte * old_data, byte * new_data);
  48.   int delete_row(const byte * buf);
  49.   int index_read(byte * buf, const byte * key,
  50.  uint key_len, enum ha_rkey_function find_flag);
  51.   int index_read_idx(byte * buf, uint idx, const byte * key,
  52.      uint key_len, enum ha_rkey_function find_flag);
  53.   int index_read_last(byte * buf, const byte * key, uint key_len);
  54.   int index_next(byte * buf);
  55.   int index_prev(byte * buf);
  56.   int index_first(byte * buf);
  57.   int index_last(byte * buf);
  58.   int index_next_same(byte *buf, const byte *key, uint keylen);
  59.   int rnd_init(bool scan);
  60.   int rnd_next(byte *buf);
  61.   int rnd_pos(byte * buf, byte *pos);
  62.   void position(const byte *record);
  63.   ha_rows records_in_range(uint inx, key_range *min_key, key_range *max_key);
  64.   void info(uint);
  65.   int extra(enum ha_extra_function operation);
  66.   int extra_opt(enum ha_extra_function operation, ulong cache_size);
  67.   int external_lock(THD *thd, int lock_type);
  68.   uint lock_count(void) const;
  69.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  70.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  71.      enum thr_lock_type lock_type);
  72.   void update_create_info(HA_CREATE_INFO *create_info);
  73.   void append_create_info(String *packet);
  74.   MYRG_INFO *myrg_info() { return file; }
  75. };