~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Olaf van der Spek
  • Date: 2011-08-13 15:08:14 UTC
  • mto: This revision was merged to the branch mainline in revision 2407.
  • Revision ID: olafvdspek@gmail.com-20110813150814-x12xd0c230a9bgtb
Refactor

Show diffs side-by-side

added added

removed removed

Lines of Context:
1247
1247
  ("table-lock-wait-timeout", po::value<uint64_t>(&table_lock_wait_timeout)->default_value(50)->notifier(&check_limits_tlwt),
1248
1248
  _("Timeout in seconds to wait for a table level lock before returning an "
1249
1249
     "error. Used only if the connection has active cursors."))
1250
 
  ("thread-stack", po::value<size_t>(&my_thread_stack_size)->default_value(DEFAULT_THREAD_STACK)->notifier(&check_limits_thread_stack),
 
1250
  ("thread-stack", po::value<size_t>(&my_thread_stack_size)->default_value(0)->notifier(&check_limits_thread_stack),
1251
1251
  _("The stack size for each thread."))
1252
1252
  ("tmp-table-size",
1253
1253
  po::value<uint64_t>(&global_system_variables.tmp_table_size)->default_value(16*1024*1024L)->notifier(&check_limits_tmp_table_size),
1886
1886
   N_("The stack size for each thread."),
1887
1887
   (char**) &my_thread_stack_size,
1888
1888
   NULL, 0, GET_SIZE,
1889
 
   REQUIRED_ARG,DEFAULT_THREAD_STACK,
 
1889
   REQUIRED_ARG,0,
1890
1890
   UINT32_C(1024*512), (int64_t)SIZE_MAX, 0, 1024, 0},
1891
1891
  {"tmp_table_size", OPT_TMP_TABLE_SIZE,
1892
1892
   N_("If an internal in-memory temporary table exceeds this size, Drizzle will"