~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-12-30 01:43:46 UTC
  • Revision ID: brian@tangent.org-20081230014346-mkfcl2j3iojpco63
Converted myisam_repair_threads to being in module for MyISAM

Show diffs side-by-side

added added

removed removed

Lines of Context:
3383
3383
   (char**) &max_system_variables.myisam_max_sort_file_size, 0,
3384
3384
   GET_ULL, REQUIRED_ARG, (int64_t) LONG_MAX, 0, (uint64_t) MAX_FILE_SIZE,
3385
3385
   0, 1024*1024, 0},
3386
 
  {"myisam_repair_threads", OPT_MYISAM_REPAIR_THREADS,
3387
 
   N_("Number of threads to use when repairing MyISAM tables. The value of "
3388
 
      "1 disables parallel repair."),
3389
 
   (char**) &global_system_variables.myisam_repair_threads,
3390
 
   (char**) &max_system_variables.myisam_repair_threads, 0,
3391
 
   GET_ULONG, REQUIRED_ARG, 1, 1, ULONG_MAX, 0, 1, 0},
3392
3386
  {"myisam_sort_buffer_size", OPT_MYISAM_SORT_BUFFER_SIZE,
3393
3387
   N_("The buffer that is allocated when sorting the index when doing a "
3394
3388
      "REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."),