~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-12-01 03:06:56 UTC
  • mfrom: (632.1.9 devel)
  • Revision ID: brian@tangent.org-20081201030656-u1lp02eer6oyxjac
Merge from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
3403
3403
      "REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."),
3404
3404
   (char**) &global_system_variables.myisam_sort_buff_size,
3405
3405
   (char**) &max_system_variables.myisam_sort_buff_size, 0,
3406
 
   GET_ULONG, REQUIRED_ARG, 8192*1024, 4, INT32_MAX, 0, 1, 0},
 
3406
   GET_ULONG, REQUIRED_ARG, 8192*1024, 4, SIZE_MAX, 0, 1, 0},
3407
3407
  {"myisam_stats_method", OPT_MYISAM_STATS_METHOD,
3408
3408
   N_("Specifies how MyISAM index statistics collection code should threat "
3409
3409
      "NULLs. Possible values of name are 'nulls_unequal' "
3496
3496
   N_("Allocation block size for storing ranges during optimization"),
3497
3497
   (char**) &global_system_variables.range_alloc_block_size,
3498
3498
   (char**) &max_system_variables.range_alloc_block_size, 0, GET_ULONG,
3499
 
   REQUIRED_ARG, RANGE_ALLOC_BLOCK_SIZE, RANGE_ALLOC_BLOCK_SIZE, ULONG_MAX,
 
3499
   REQUIRED_ARG, RANGE_ALLOC_BLOCK_SIZE, RANGE_ALLOC_BLOCK_SIZE, SIZE_MAX,
3500
3500
   0, 1024, 0},
3501
3501
  {"read_buffer_size", OPT_RECORD_BUFFER,
3502
3502
    N_("Each thread that does a sequential scan allocates a buffer of this "
3559
3559
  {"sort_buffer_size", OPT_SORT_BUFFER,
3560
3560
   N_("Each thread that needs to do a sort allocates a buffer of this size."),
3561
3561
   (char**) &global_system_variables.sortbuff_size,
3562
 
   (char**) &max_system_variables.sortbuff_size, 0, GET_ULL, REQUIRED_ARG,
3563
 
   MAX_SORT_MEMORY, MIN_SORT_MEMORY+MALLOC_OVERHEAD*2, UINT64_MAX,
 
3562
   (char**) &max_system_variables.sortbuff_size, 0, GET_ULONG, REQUIRED_ARG,
 
3563
   MAX_SORT_MEMORY, MIN_SORT_MEMORY+MALLOC_OVERHEAD*2, SIZE_MAX,
3564
3564
   MALLOC_OVERHEAD, 1, 0},
3565
3565
  {"sync-binlog", OPT_SYNC_BINLOG,
3566
3566
   N_("Synchronously flush binary log to disk after every #th event. "