~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2008-11-25 19:51:05 UTC
  • Revision ID: brian@tangent.org-20081125195105-bltdxwzcayjishqy
ulong fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
  uint32_t max_allowed_packet;
157
157
  uint64_t max_error_count;
158
158
  uint64_t max_length_for_sort_data;
159
 
  uint32_t max_sort_length;
 
159
  uint64_t max_sort_length;
160
160
  uint64_t max_tmp_tables;
161
 
  ulong min_examined_row_limit;
162
 
  ulong myisam_repair_threads;
163
 
  ulong myisam_sort_buff_size;
164
 
  ulong myisam_stats_method;
 
161
  uint64_t min_examined_row_limit;
 
162
  uint32_t myisam_repair_threads;
 
163
  uint64_t myisam_sort_buff_size;
 
164
  uint32_t myisam_stats_method;
165
165
  uint32_t net_buffer_length;
166
166
  uint32_t net_interactive_timeout;
167
167
  uint32_t net_read_timeout;
176
176
      1 - force MRR when the storage engine is capable of doing it
177
177
      2 - disable MRR.
178
178
  */
179
 
  ulong optimizer_use_mrr; 
 
179
  uint32_t optimizer_use_mrr; 
180
180
  /* A bitmap for switching optimizations on/off */
181
 
  ulong optimizer_switch;
 
181
  uint32_t optimizer_switch;
182
182
  ulong preload_buff_size;
183
183
  ulong read_buff_size;
184
184
  ulong read_rnd_buff_size;
185
185
  ulong div_precincrement;
186
186
  ulong sortbuff_size;
187
187
  ulong thread_handling;
188
 
  ulong tx_isolation;
 
188
  uint32_t tx_isolation;
189
189
  ulong completion_type;
190
190
  /* Determines which non-standard SQL behaviour should be enabled */
191
191
  ulong sql_mode;
192
192
  uint32_t default_week_format;
193
 
  uint32_t max_seeks_for_key;
194
 
  uint32_t range_alloc_block_size;
 
193
  uint64_t max_seeks_for_key;
 
194
  uint64_t range_alloc_block_size;
195
195
  uint32_t query_alloc_block_size;
196
196
  uint32_t query_prealloc_size;
197
197
  uint32_t trans_alloc_block_size;
198
198
  uint32_t trans_prealloc_size;
199
199
  bool log_warnings;
200
 
  uint32_t group_concat_max_len;
 
200
  uint64_t group_concat_max_len;
201
201
  /*
202
202
    In slave thread we need to know in behalf of which
203
203
    thread the query is being run to replicate temp tables properly