~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Monty Taylor
  • Date: 2008-08-12 02:35:40 UTC
  • mto: (312.1.3 translations)
  • mto: This revision was merged to the branch mainline in revision 317.
  • Revision ID: monty@inaugust.com-20080812023540-2n96uca61rgt1mqs
Removed another useless define.

Show diffs side-by-side

added added

removed removed

Lines of Context:
247
247
bool opt_slow_log;
248
248
ulong log_output_options;
249
249
bool opt_log_queries_not_using_indexes= false;
250
 
bool opt_error_log= IF_WIN(1,0);
 
250
bool opt_error_log= 0;
251
251
bool opt_skip_show_db= false;
252
252
bool opt_character_set_client_handshake= 1;
253
253
bool server_id_supplied = 0;
3911
3911
   "The number of seconds the server waits for activity on a connection before closing it.",
3912
3912
   (char**) &global_system_variables.net_wait_timeout,
3913
3913
   (char**) &max_system_variables.net_wait_timeout, 0, GET_ULONG,
3914
 
   REQUIRED_ARG, NET_WAIT_TIMEOUT, 1, IF_WIN(INT32_MAX/1000, LONG_TIMEOUT),
 
3914
   REQUIRED_ARG, NET_WAIT_TIMEOUT, 1, LONG_TIMEOUT,
3915
3915
   0, 1, 0},
3916
3916
  {0, 0, 0, 0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0}
3917
3917
};
4307
4307
  global_system_variables.myisam_stats_method= MI_STATS_METHOD_NULLS_NOT_EQUAL;
4308
4308
 
4309
4309
  /* Variables that depends on compile options */
4310
 
  opt_error_log= IF_WIN(1,0);
 
4310
  opt_error_log= 0;
4311
4311
#ifdef HAVE_BROKEN_REALPATH
4312
4312
  have_symlink=SHOW_OPTION_NO;
4313
4313
#else