~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-10-11 18:23:34 UTC
  • Revision ID: brian@tangent.org-20081011182334-7cmtytah6rs12e2y
Remove dead slow variable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
280
280
bool opt_readonly;
281
281
bool use_temp_pool;
282
282
bool relay_log_purge;
283
 
bool opt_secure_auth= false;
284
283
char* opt_secure_file_priv= 0;
285
 
bool opt_log_slow_admin_statements= 0;
286
 
bool opt_log_slow_slave_statements= 0;
287
 
bool opt_old_style_user_limits= 0;
288
 
bool trust_function_creators= 0;
289
284
/*
290
285
  True if there is at least one per-hour limit for some user, so we should
291
286
  check them before each query (and possibly reset counters when hour is
3281
3276
   (char**) &global_system_variables.old_alter_table,
3282
3277
   (char**) &max_system_variables.old_alter_table, 0, GET_BOOL, NO_ARG,
3283
3278
   0, 0, 0, 0, 0, 0},
3284
 
  {"old-style-user-limits", OPT_OLD_STYLE_USER_LIMITS,
3285
 
   N_("Enable old-style user limits (before 5.0.3 user resources were counted "
3286
 
      "per each user+host vs. per account)"),
3287
 
   (char**) &opt_old_style_user_limits, (char**) &opt_old_style_user_limits,
3288
 
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
3289
3279
  {"pid-file", OPT_PID_FILE,
3290
3280
   N_("Pid file used by safe_mysqld."),
3291
3281
   (char**) &pidfile_name_ptr, (char**) &pidfile_name_ptr, 0, GET_STR,
4225
4215
  opt_skip_show_db=0;
4226
4216
  opt_logname= opt_binlog_index_name= 0;
4227
4217
  opt_tc_log_file= (char *)"tc.log";      // no hostname in tc_log file name !
4228
 
  opt_secure_auth= 0;
4229
4218
  opt_secure_file_priv= 0;
4230
4219
  segfaulted= kill_in_progress= 0;
4231
4220
  cleanup_done= 0;