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

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. /* Structs that defines the TABLE */
  17. class Item; /* Needed by ORDER */
  18. class GRANT_TABLE;
  19. /* Order clause list element */
  20. typedef struct st_order {
  21.   struct st_order *next;
  22.   Item  **item; /* Point at item in select fields */
  23.   bool  asc; /* true if ascending */
  24.   bool  free_me; /* true if item isn't shared  */
  25.   bool  in_field_list; /* true if in select field list */
  26.   Field  *field; /* If tmp-table group */
  27.   char  *buff; /* If tmp-table group */
  28.   table_map used,depend_map;
  29. } ORDER;
  30. typedef struct st_grant_info
  31. {
  32.   GRANT_TABLE *grant_table;
  33.   uint version;
  34.   uint privilege;
  35.   uint want_privilege;
  36. } GRANT_INFO;
  37. /* Table cache entry struct */
  38. class Field_timestamp;
  39. class Field_blob;
  40. struct st_table {
  41.   handler *file;
  42.   Field **field; /* Pointer to fields */
  43.   Field_blob **blob_field; /* Pointer to blob fields */
  44.   HASH name_hash; /* hash of field names */
  45.   byte *record[3]; /* Pointer to records */
  46.   uint fields; /* field count */
  47.   uint reclength; /* Recordlength */
  48.   uint rec_buff_length;
  49.   uint keys,key_parts,primary_key,max_key_length,max_unique_length;
  50.   uint uniques;
  51.   uint null_fields; /* number of null fields */
  52.   uint blob_fields; /* number of blob fields */
  53.   key_map keys_in_use, keys_in_use_for_query;
  54.   KEY  *key_info; /* data of keys in database */
  55.   TYPELIB keynames; /* Pointers to keynames */
  56.   ha_rows max_rows; /* create information */
  57.   ha_rows min_rows; /* create information */
  58.   ulong   avg_row_length; /* create information */
  59.   ulong   raid_chunksize;
  60.   TYPELIB fieldnames; /* Pointer to fieldnames */
  61.   TYPELIB *intervals; /* pointer to interval info */
  62.   enum db_type db_type; /* table_type for handler */
  63.   enum row_type row_type; /* How rows are stored */
  64.   uint db_create_options; /* Create options from database */
  65.   uint db_options_in_use; /* Options in use */
  66.   uint db_record_offset; /* if HA_REC_IN_SEQ */
  67.   uint db_stat; /* mode of file as in handler.h */
  68.   uint raid_type,raid_chunks;
  69.   uint status; /* Used by postfix.. */
  70.   uint system; /* Set if system record */
  71.   ulong time_stamp; /* Set to offset+1 of record */
  72.   uint timestamp_field_offset;
  73.   uint next_number_index;
  74.   uint blob_ptr_size; /* 4 or 8 */
  75.   uint next_number_key_offset;
  76.   int current_lock; /* Type of lock on table */
  77.   my_bool copy_blobs; /* copy_blobs when storing */
  78.   my_bool null_row; /* All columns are null */
  79.   my_bool maybe_null,outer_join; /* Used with OUTER JOIN */
  80.   my_bool distinct,tmp_table,const_table;
  81.   my_bool key_read;
  82.   my_bool crypted;
  83.   my_bool db_low_byte_first; /* Portable row format */
  84.   my_bool locked_by_flush;
  85.   my_bool locked_by_name;
  86.   my_bool crashed;
  87.   my_bool is_view;
  88.   Field *next_number_field, /* Set if next_number is activated */
  89. *found_next_number_field, /* Set on open */
  90.         *rowid_field;
  91.   Field_timestamp *timestamp_field;
  92.   my_string comment; /* Comment about table */
  93.   REGINFO reginfo; /* field connections */
  94.   MEM_ROOT mem_root;
  95.   GRANT_INFO grant;
  96.   char *table_cache_key;
  97.   char *table_name,*real_name,*path;
  98.   uint key_length; /* Length of key */
  99.   uint tablenr,used_fields,null_bytes;
  100.   table_map map;
  101.   ulong version,flush_version;
  102.   uchar *null_flags;
  103.   IO_CACHE *io_cache; /* If sorted trough file*/
  104.   byte *record_pointers; /* If sorted in memory */
  105.   ha_rows found_records; /* How many records in sort */
  106.   ORDER *group;
  107.   key_map quick_keys, used_keys, ref_primary_key;
  108.   ha_rows quick_rows[MAX_KEY];
  109.   uint quick_key_parts[MAX_KEY];
  110.   key_part_map  const_key_parts[MAX_KEY];
  111.   ulong query_id;
  112.   uint          temp_pool_slot;
  113.   THD *in_use; /* Which thread uses this */
  114.   struct st_table *next,*prev;
  115. };
  116. #define JOIN_TYPE_LEFT 1
  117. #define JOIN_TYPE_RIGHT 2
  118. typedef struct st_table_list {
  119.   struct st_table_list *next;
  120.   char *db,*name,*real_name;
  121.   Item *on_expr; /* Used with outer join */
  122.   struct st_table_list *natural_join; /* natural join on this table*/
  123.   List<String> *use_index,*ignore_index;
  124.   TABLE *table;
  125.   GRANT_INFO grant;
  126.   thr_lock_type lock_type;
  127.   uint outer_join; /* Which join type */
  128.   bool straight; /* optimize with prev table */
  129.   bool          updating;     /* for replicate-do/ignore table */
  130. } TABLE_LIST;