home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / sql / ha_myisammrg.h < prev    next >
C/C++ Source or Header  |  2000-09-26  |  3KB  |  76 lines

  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.  
  17.  
  18. #ifdef __GNUC__
  19. #pragma interface            /* gcc class implementation */
  20. #endif
  21.  
  22. /* class for the the myisam merge handler */
  23.  
  24. #include <myisammrg.h>
  25.  
  26. class ha_myisammrg: public handler
  27. {
  28.   MYRG_INFO *file;
  29.  
  30.  public:
  31.   ha_myisammrg(TABLE *table): handler(table), file(0) {}
  32.   ~ha_myisammrg() {}
  33.   const char *table_type() const { return "MRG_MyISAM"; }
  34.   const char **bas_ext() const;
  35.   ulong option_flag() const
  36.     { return (HA_REC_NOT_IN_SEQ | HA_READ_NEXT | 
  37.           HA_READ_PREV | HA_READ_RND_SAME | 
  38.           HA_HAVE_KEY_READ_ONLY | 
  39.           HA_KEYPOS_TO_RNDPOS | HA_READ_ORDER | 
  40.           HA_LASTKEY_ORDER | HA_READ_NOT_EXACT_KEY | 
  41.           HA_LONGLONG_KEYS | HA_NULL_KEY | HA_BLOB_KEY); }
  42.   uint max_record_length() const { return HA_MAX_REC_LENGTH; }
  43.   uint max_keys()          const { return MI_MAX_KEY; }
  44.   uint max_key_parts()     const { return MAX_REF_PARTS; }
  45.   uint max_key_length()    const { return MAX_KEY_LENGTH; }
  46.   virtual double scan_time()
  47.     { return ulonglong2double(data_file_length) / IO_SIZE + file->tables; }
  48.  
  49.   int open(const char *name, int mode, uint test_if_locked);
  50.   int close(void);
  51.   int write_row(byte * buf);
  52.   int update_row(const byte * old_data, byte * new_data);
  53.   int delete_row(const byte * buf);
  54.   int index_read(byte * buf, const byte * key,
  55.          uint key_len, enum ha_rkey_function find_flag);
  56.   int index_read_idx(byte * buf, uint idx, const byte * key,
  57.              uint key_len, enum ha_rkey_function find_flag);
  58.   int index_next(byte * buf);
  59.   int index_prev(byte * buf);
  60.   int index_first(byte * buf);
  61.   int index_last(byte * buf);
  62.   int rnd_init(bool scan=1);
  63.   int rnd_next(byte *buf);
  64.   int rnd_pos(byte * buf, byte *pos);
  65.   void position(const byte *record);
  66.   my_off_t row_position() { return myrg_position(file); }
  67.   void info(uint);
  68.   int extra(enum ha_extra_function operation);
  69.   int reset(void);
  70.   int external_lock(THD *thd, int lock_type);
  71.   uint lock_count(void) const;
  72.   int create(const char *name, TABLE *form, HA_CREATE_INFO *create_info);
  73.   THR_LOCK_DATA **store_lock(THD *thd, THR_LOCK_DATA **to,
  74.                  enum thr_lock_type lock_type);
  75. };
  76.