~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/session.h

  • Committer: Brian Aker
  • Date: 2008-11-25 16:51:19 UTC
  • Revision ID: brian@tangent.org-20081125165119-e0p27zl7jcto1see
Added 32bit system variable support

Show diffs side-by-side

added added

removed removed

Lines of Context:
155
155
  ulong max_allowed_packet;
156
156
  ulong max_error_count;
157
157
  ulong max_length_for_sort_data;
158
 
  ulong max_sort_length;
 
158
  uint32_t max_sort_length;
159
159
  ulong max_tmp_tables;
160
160
  ulong min_examined_row_limit;
161
161
  ulong myisam_repair_threads;
188
188
  ulong completion_type;
189
189
  /* Determines which non-standard SQL behaviour should be enabled */
190
190
  ulong sql_mode;
191
 
  ulong default_week_format;
192
 
  ulong max_seeks_for_key;
193
 
  ulong range_alloc_block_size;
194
 
  ulong query_alloc_block_size;
195
 
  ulong query_prealloc_size;
196
 
  ulong trans_alloc_block_size;
197
 
  ulong trans_prealloc_size;
198
 
  ulong log_warnings;
199
 
  ulong group_concat_max_len;
 
191
  uint32_t default_week_format;
 
192
  uint32_t max_seeks_for_key;
 
193
  uint32_t range_alloc_block_size;
 
194
  uint32_t query_alloc_block_size;
 
195
  uint32_t query_prealloc_size;
 
196
  uint32_t trans_alloc_block_size;
 
197
  uint32_t trans_prealloc_size;
 
198
  bool log_warnings;
 
199
  uint32_t group_concat_max_len;
200
200
  /*
201
201
    In slave thread we need to know in behalf of which
202
202
    thread the query is being run to replicate temp tables properly