~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler_structs.h

  • Committer: Brian Aker
  • Date: 2009-08-24 19:19:39 UTC
  • mfrom: (1121.1.6 merge)
  • Revision ID: brian@gaz-20090824191939-xcn528r7gwjc48h3
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
79
79
typedef struct st_ha_create_information
80
80
{
81
81
  const CHARSET_INFO *table_charset, *default_table_charset;
82
 
  LEX_STRING connect_string;
83
 
  const char *data_file_name, *index_file_name;
84
82
  const char *alias;
85
83
  uint64_t auto_increment_value;
86
84
  uint32_t table_options;
89
87
  uint32_t block_size;
90
88
  enum row_type row_type;
91
89
  StorageEngine *db_type;
92
 
  uint32_t null_bits;                       /* NULL bits at start of record */
93
90
  uint32_t options;                         /* OR of HA_CREATE_ options */
94
 
  uint32_t extra_size;                      /* length of extra data segment */
95
91
  bool table_existed;                   /* 1 in create if table existed */
96
 
  bool varchar;                         /* 1 if table has a VARCHAR */
97
92
} HA_CREATE_INFO;
98
93
 
99
94
typedef struct st_ha_alter_information
112
107
{
113
108
  enum ha_key_alg algorithm;
114
109
  uint32_t block_size;
115
 
  LEX_STRING parser_name;
116
110
  LEX_STRING comment;
117
111
} KEY_CREATE_INFO;
118
112