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 / structs.h < prev    next >
C/C++ Source or Header  |  2000-11-19  |  5KB  |  165 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. /* The old structures from unireg */
  19.  
  20. struct st_table;
  21. class Field;
  22.  
  23. typedef struct st_date_format {        /* How to print date */
  24.   uint pos[6];                /* Positions to YY.MM.DD HH:MM:SS */
  25. } DATE_FORMAT;
  26.  
  27.  
  28. typedef struct st_keyfile_info {    /* used with ha_info() */
  29.   byte ref[MAX_REFLENGTH];        /* Pointer to current row */
  30.   byte dupp_ref[MAX_REFLENGTH];        /* Pointer to dupp row */
  31.   uint ref_length;            /* Length of ref (1-8) */
  32.   uint block_size;            /* index block size */
  33.   File filenr;                /* (uniq) filenr for table */
  34.   ha_rows records;            /* Records i datafilen */
  35.   ha_rows deleted;            /* Deleted records */
  36.   ulonglong data_file_length;        /* Length off data file */
  37.   ulonglong max_data_file_length;    /* Length off data file */
  38.   ulonglong index_file_length;
  39.   ulonglong max_index_file_length;
  40.   ulonglong delete_length;        /* Free bytes */
  41.   ulonglong auto_increment_value;
  42.   int errkey,sortkey;            /* Last errorkey and sorted by */
  43.   time_t create_time;            /* When table was created */
  44.   time_t check_time;
  45.   time_t update_time;
  46.   ulong mean_rec_length;        /* physical reclength */
  47. } KEYFILE_INFO;
  48.  
  49.  
  50. typedef struct st_key_part_info {    /* Info about a key part */
  51.   Field *field;
  52.   uint    offset;                /* offset in record (from 0) */
  53.   uint    null_offset;            // Offset to null_bit in record
  54.   uint16 length;            /* Length of key_part */
  55.   uint16 store_length;
  56.   uint16 key_type;
  57.   uint16 fieldnr;            /* Fieldnum in UNIREG */
  58.   uint8 key_part_flag;            /* 0 or HA_REVERSE_SORT */
  59.   uint8 type;
  60.   uint8 null_bit;            // Position to null_bit
  61. } KEY_PART_INFO ;
  62.  
  63.  
  64. typedef struct st_key {
  65.   uint    key_length;            /* Tot length of key */
  66.   uint    flags;                /* dupp key and pack flags */
  67.   uint    key_parts;            /* How many key_parts */
  68.   uint  extra_length;
  69.   uint    usable_key_parts;        /* Should normally be = key_parts */
  70.   KEY_PART_INFO *key_part;
  71.   char    *name;                /* Name of key */
  72.   ulong *rec_per_key;            /* Key part distribution */
  73.   union {
  74.     int  bdb_return_if_eq;
  75.   } handler;
  76. } KEY;
  77.  
  78.  
  79. struct st_join_table;
  80.  
  81. typedef struct st_reginfo {        /* Extra info about reg */
  82.   struct st_join_table *join_tab;    /* Used by SELECT() */
  83.   enum thr_lock_type lock_type;        /* How database is used */
  84.   bool not_exists_optimize;
  85.   bool impossible_range;
  86. } REGINFO;
  87.  
  88.  
  89. struct st_read_record;                /* For referense later */
  90. class SQL_SELECT;
  91. class THD;
  92. class handler;
  93.  
  94. typedef struct st_read_record {            /* Parameter to read_record */
  95.   struct st_table *table;            /* Head-form */
  96.   handler *file;
  97.   struct st_table **forms;            /* head and ref forms */
  98.   int (*read_record)(struct st_read_record *);
  99.   THD *thd;
  100.   SQL_SELECT *select;
  101.   uint cache_records;
  102.   uint ref_length,struct_length,reclength,rec_cache_size,error_offset;
  103.   uint index;
  104.   byte *ref_pos;                /* pointer to form->refpos */
  105.   byte *record;
  106.   byte    *cache,*cache_pos,*cache_end,*read_positions;
  107.   IO_CACHE *io_cache;
  108.   bool print_error;
  109. } READ_RECORD;
  110.  
  111. enum timestamp_type { TIMESTAMP_NONE, TIMESTAMP_DATE, TIMESTAMP_FULL,
  112.               TIMESTAMP_TIME };
  113.  
  114. typedef struct st_time {
  115.   uint year,month,day,hour,minute,second,second_part;
  116.   bool neg;
  117.   timestamp_type time_type;
  118. } TIME;
  119.  
  120. typedef struct {
  121.   long year,month,day,hour,minute,second,second_part;
  122.   bool neg;
  123. } INTERVAL;
  124.  
  125.  
  126. enum SHOW_TYPE { SHOW_LONG,SHOW_CHAR,SHOW_INT,SHOW_CHAR_PTR,SHOW_BOOL,
  127.          SHOW_MY_BOOL,SHOW_OPENTABLES,SHOW_STARTTIME,SHOW_QUESTION,
  128.          SHOW_LONG_CONST, SHOW_INT_CONST};
  129.  
  130. struct show_var_st {
  131.   const char *name;
  132.   char *value;
  133.   SHOW_TYPE type;
  134. };
  135.  
  136. typedef struct lex_string {
  137.   char *str;
  138.   uint length;
  139. } LEX_STRING;
  140.  
  141. typedef struct    st_lex_user {
  142.   LEX_STRING user, host, password;
  143. } LEX_USER;
  144.  
  145.     /* Bits in form->update */
  146. #define REG_MAKE_DUPP        1    /* Make a copy of record when read */
  147. #define REG_NEW_RECORD        2    /* Write a new record if not found */
  148. #define REG_UPDATE        4    /* Uppdate record */
  149. #define REG_DELETE        8    /* Delete found record */
  150. #define REG_PROG        16    /* User is updateing database */
  151. #define REG_CLEAR_AFTER_WRITE    32
  152. #define REG_MAY_BE_UPDATED    64
  153. #define REG_AUTO_UPDATE        64    /* Used in D-forms for scroll-tables */
  154. #define REG_OVERWRITE        128
  155. #define REG_SKIPP_DUPP        256
  156.  
  157.     /* Bits in form->status */
  158. #define STATUS_NO_RECORD    (1+2)    /* Record isn't usably */
  159. #define STATUS_GARBAGE        1
  160. #define STATUS_NOT_FOUND    2    /* No record in database when neaded */
  161. #define STATUS_NO_PARENT    4    /* Parent record wasn't found */
  162. #define STATUS_NOT_READ        8    /* Record isn't read */
  163. #define STATUS_UPDATED        16    /* Record is updated by formula */
  164. #define STATUS_NULL_ROW        32    /* table->null_row is set */
  165.