~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-12-03 23:44:32 UTC
  • Revision ID: brian@tangent.org-20081203234432-h3ypj3p3djjwy1zh
Remove dead variable

Show diffs side-by-side

added added

removed removed

Lines of Context:
323
323
bool slave_allow_batching;
324
324
ulong slave_exec_mode_options;
325
325
const char *slave_exec_mode_str= "STRICT";
326
 
uint64_t thread_cache_size= 0;
327
326
uint64_t thread_pool_size= 0;
328
327
uint64_t binlog_cache_size= 0;
329
328
uint64_t max_binlog_cache_size= 0;
3580
3579
      "error. Used only if the connection has active cursors."),
3581
3580
   (char**) &table_lock_wait_timeout, (char**) &table_lock_wait_timeout,
3582
3581
   0, GET_ULL, REQUIRED_ARG, 50, 1, 1024 * 1024 * 1024, 0, 1, 0},
3583
 
  {"thread_cache_size", OPT_THREAD_CACHE_SIZE,
3584
 
   N_("How many threads we should keep in a cache for reuse."),
3585
 
   (char**) &thread_cache_size, (char**) &thread_cache_size, 0, GET_ULONG,
3586
 
   REQUIRED_ARG, 0, 0, 16384, 0, 1, 0},
3587
3582
  {"thread_pool_size", OPT_THREAD_CACHE_SIZE,
3588
3583
    N_("How many threads we should create to handle query requests in case of "
3589
3584
       "'thread_handling=pool-of-threads'"),