~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2009-05-21 16:13:03 UTC
  • mto: This revision was merged to the branch mainline in revision 1032.
  • Revision ID: brian@gaz-20090521161303-y188unf9qw0bqds1
Final bits to structure alignment

Show diffs side-by-side

added added

removed removed

Lines of Context:
142
142
  uint32_t net_wait_timeout;
143
143
  uint32_t net_write_timeout;
144
144
  bool optimizer_prune_level;
 
145
  bool log_warnings;
 
146
  bool engine_condition_pushdown;
 
147
  bool keep_files_on_create;
 
148
 
145
149
  uint32_t optimizer_search_depth;
146
150
  /*
147
151
    Controls use of Engine-MRR:
152
156
  uint32_t optimizer_use_mrr;
153
157
  /* A bitmap for switching optimizations on/off */
154
158
  uint32_t optimizer_switch;
 
159
  uint32_t div_precincrement;
155
160
  uint64_t preload_buff_size;
156
161
  uint32_t read_buff_size;
157
162
  uint32_t read_rnd_buff_size;
158
 
  uint32_t div_precincrement;
159
163
  size_t sortbuff_size;
160
164
  uint32_t thread_handling;
161
165
  uint32_t tx_isolation;
168
172
  uint32_t query_prealloc_size;
169
173
  uint32_t trans_alloc_block_size;
170
174
  uint32_t trans_prealloc_size;
171
 
  bool log_warnings;
172
175
  uint64_t group_concat_max_len;
173
176
  /* TODO: change this to my_thread_id - but have to fix set_var first */
174
177
  uint64_t pseudo_thread_id;
175
178
 
176
 
  bool engine_condition_pushdown;
177
 
  bool keep_files_on_create;
178
 
 
179
179
  StorageEngine *storage_engine;
180
180
 
181
181
  /* Only charset part of these variables is sensible */