ha_isammrg.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. #ifdef __GNUC__
  17. #pragma interface /* gcc class implementation */
  18. #endif
  19. /* class for the the myisam merge handler */
  20. #include <merge.h>
  21. class ha_isammrg: public handler
  22. {
  23.   MRG_INFO *file;
  24.  public:
  25.   ha_isammrg(TABLE *table): handler(table), file(0) {}
  26.   ~ha_isammrg() {}
  27.   const char *table_type() const { return "MRG_ISAM"; }
  28.   const char **bas_ext() const;
  29.   ulong option_flag() const { return HA_READ_RND_SAME+HA_KEYPOS_TO_RNDPOS+HA_REC_NOT_IN_SEQ;}
  30.   uint max_record_length() const { return HA_MAX_REC_LENGTH; }
  31.   uint max_keys()          const { return 0; }
  32.   uint max_key_parts()     const { return 0; }
  33.   uint max_key_length()    const { return 0; }
  34.   bool low_byte_first()    const { return 0; }
  35.   uint min_record_length(uint options) const;
  36.   int open(const char *name, int mode, uint test_if_locked);
  37.   int close(void);
  38.   int write_row(byte * buf);
  39.   int update_row(const byte * old_data, byte * new_data);
  40.   int delete_row(const byte * buf);
  41.   int index_read(byte * buf, const byte * key,
  42.  uint key_len, enum ha_rkey_function find_flag);
  43.   int index_read_idx(byte * buf, uint indx, const byte * key,
  44.      uint key_len, enum ha_rkey_function find_flag);
  45.   int index_next(byte * buf);
  46.   int index_prev(byte * buf);
  47.   int index_first(byte * buf);
  48.   int index_last(byte * buf);
  49.   int rnd_init(bool scan=1);
  50.   int rnd_next(byte *buf);
  51.   int rnd_pos(byte * buf, byte *pos);
  52.   void position(const byte *record);
  53.   my_off_t row_position() { return mrg_position(file); }
  54.   void info(uint);
  55.   int extra(enum ha_extra_function operation);
  56.   int reset(void);
  57.   int external_lock(THD *thd, int lock_type);
  58.   uint lock_count(void) const;
  59.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  60.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  61.      enum thr_lock_type lock_type);
  62. };