~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-12-16 22:12:53 UTC
  • Revision ID: brian@tangent.org-20081216221253-9tgzl02m1z2sifpq
Removed low_priority (aka.. lets keep the execution clean and free of
MyISAM's)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2690
2690
  OPT_BIND_ADDRESS,            OPT_PID_FILE,
2691
2691
  OPT_SKIP_PRIOR,
2692
2692
  OPT_STANDALONE,
2693
 
  OPT_CONSOLE,                 OPT_LOW_PRIORITY_UPDATES,
 
2693
  OPT_CONSOLE,
2694
2694
  OPT_SHORT_LOG_FORMAT,
2695
2695
  OPT_FLUSH,                   OPT_SAFE,
2696
2696
  OPT_STORAGE_ENGINE,          OPT_INIT_FILE,
3003
3003
   (char**) &global_system_variables.log_warnings,
3004
3004
   (char**) &max_system_variables.log_warnings, 0, GET_ULONG, OPT_ARG, 1, 0, 0,
3005
3005
   0, 0, 0},
3006
 
  {"low-priority-updates", OPT_LOW_PRIORITY_UPDATES,
3007
 
   N_("INSERT/DELETE/UPDATE has lower priority than selects."),
3008
 
   (char**) &global_system_variables.low_priority_updates,
3009
 
   (char**) &max_system_variables.low_priority_updates,
3010
 
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
3011
3006
  {"master-info-file", OPT_MASTER_INFO_FILE,
3012
3007
   N_("The location and name of the file that remembers the master and "
3013
3008
      "where the I/O replication thread is in the master's binlogs."),
4117
4112
    if (opt_console)
4118
4113
      opt_error_log= 0;                 // Force logs to stdout
4119
4114
    break;
4120
 
  case OPT_LOW_PRIORITY_UPDATES:
4121
 
    thr_upgraded_concurrent_insert_lock= TL_WRITE_LOW_PRIORITY;
4122
 
    global_system_variables.low_priority_updates=1;
4123
 
    break;
4124
4115
  case OPT_SERVER_ID:
4125
4116
    server_id_supplied = 1;
4126
4117
    break;