ha_isammrg.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 <merge.h>
  18. class ha_isammrg: public handler
  19. {
  20.   MRG_INFO *file;
  21.  public:
  22.   ha_isammrg(TABLE *table): handler(table), file(0) {}
  23.   ~ha_isammrg() {}
  24.   const char *table_type() const { return "MRG_ISAM"; }
  25.   const char **bas_ext() const;
  26.   ulong table_flags() const { return (HA_READ_RND_SAME |
  27.       HA_REC_NOT_IN_SEQ | HA_FILE_BASED); }
  28.   ulong index_flags(uint idx, uint part, bool all_parts) const
  29.   { DBUG_ASSERT(0); return 0; }
  30.   uint max_supported_keys()          const { return 0; }
  31.   bool low_byte_first()    const { return 0; }
  32.   uint min_record_length(uint options) const;
  33.   int open(const char *name, int mode, uint test_if_locked);
  34.   int close(void);
  35.   int write_row(byte * buf);
  36.   int update_row(const byte * old_data, byte * new_data);
  37.   int delete_row(const byte * buf);
  38.   int index_read(byte * buf, const byte * key,
  39.  uint key_len, enum ha_rkey_function find_flag);
  40.   int index_read_idx(byte * buf, uint indx, const byte * key,
  41.      uint key_len, enum ha_rkey_function find_flag);
  42.   int index_next(byte * buf);
  43.   int index_prev(byte * buf);
  44.   int index_first(byte * buf);
  45.   int index_last(byte * buf);
  46.   int rnd_init(bool scan);
  47.   int rnd_next(byte *buf);
  48.   int rnd_pos(byte * buf, byte *pos);
  49.   void position(const byte *record);
  50.   void info(uint);
  51.   int extra(enum ha_extra_function operation);
  52.   int external_lock(THD *thd, int lock_type);
  53.   uint lock_count(void) const;
  54.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  55.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  56.      enum thr_lock_type lock_type);
  57.   uint8 table_cache_type() { return HA_CACHE_TBL_NOCACHE; }
  58. };