~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

  • Committer: Brian Aker
  • Date: 2008-11-25 16:51:19 UTC
  • Revision ID: brian@tangent.org-20081125165119-e0p27zl7jcto1see
Added 32bit system variable support

Show diffs side-by-side

added added

removed removed

Lines of Context:
3342
3342
  {"max_length_for_sort_data", OPT_MAX_LENGTH_FOR_SORT_DATA,
3343
3343
   N_("Max number of bytes in sorted records."),
3344
3344
   (char**) &global_system_variables.max_length_for_sort_data,
3345
 
   (char**) &max_system_variables.max_length_for_sort_data, 0, GET_ULONG,
 
3345
   (char**) &max_system_variables.max_length_for_sort_data, 0, GET_ULL,
3346
3346
   REQUIRED_ARG, 1024, 4, 8192*1024L, 0, 1, 0},
3347
3347
  {"max_relay_log_size", OPT_MAX_RELAY_LOG_SIZE,
3348
3348
   N_("If non-zero: relay log will be rotated automatically when the size "
3361
3361
      "(only the first max_sort_length bytes of each value are used; the "
3362
3362
      "rest are ignored)."),
3363
3363
   (char**) &global_system_variables.max_sort_length,
3364
 
   (char**) &max_system_variables.max_sort_length, 0, GET_ULONG,
 
3364
   (char**) &max_system_variables.max_sort_length, 0, GET_UINT,
3365
3365
   REQUIRED_ARG, 1024, 4, 8192*1024L, 0, 1, 0},
3366
3366
  {"max_tmp_tables", OPT_MAX_TMP_TABLES,
3367
3367
   N_("Maximum number of temporary tables a client can keep open at a time."),