~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-08-20 03:21:20 UTC
  • Revision ID: brian@tangent.org-20080820032120-lv3c5pu3owhex19j
flag cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
static bool volatile select_thread_in_use, signal_thread_in_use;
224
224
static bool volatile ready_to_exit;
225
225
static bool opt_debugging= 0, opt_console= 0;
226
 
static bool opt_short_log_format= 0;
227
226
static uint kill_cached_threads, wake_thread;
228
227
static ulong killed_threads, thread_created;
229
228
static ulong max_used_connections;
3340
3339
   (char**) &opt_log_queries_not_using_indexes,
3341
3340
   (char**) &opt_log_queries_not_using_indexes,
3342
3341
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
3343
 
  {"log-short-format", OPT_SHORT_LOG_FORMAT,
3344
 
   N_("Don't log extra information to update and slow-query logs."),
3345
 
   (char**) &opt_short_log_format, (char**) &opt_short_log_format,
3346
 
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
3347
3342
  {"log-slave-updates", OPT_LOG_SLAVE_UPDATES,
3348
3343
   N_("Tells the slave to log the updates from the slave thread to the binary "
3349
3344
      "log. You will need to turn it on if you plan to "
4958
4953
  global_system_variables.long_query_time= max_system_variables.long_query_time=
4959
4954
    (int64_t) (long_query_time * 1000000.0);
4960
4955
 
4961
 
  if (opt_short_log_format)
4962
 
    opt_specialflag|= SPECIAL_SHORT_LOG_FORMAT;
4963
 
 
4964
4956
  if (init_global_datetime_format(DRIZZLE_TIMESTAMP_DATE,
4965
4957
                                  &global_system_variables.date_format) ||
4966
4958
      init_global_datetime_format(DRIZZLE_TIMESTAMP_TIME,