~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/drizzled.cc

Merged from Andrew.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1353
1353
 
1354
1354
#ifdef HAVE_INITGROUPS
1355
1355
  if (calling_initgroups)
1356
 
    fprintf(stderr, _("\nThis crash occured while the server was calling "
 
1356
    fprintf(stderr, _("\nThis crash occurred while the server was calling "
1357
1357
                      "initgroups(). This is\n"
1358
1358
                      "often due to the use of a drizzled that is statically "
1359
1359
                      "linked against glibc\n"
3109
3109
   N_("Don't use new, possible wrong routines."),
3110
3110
   0, 0, 0, GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
3111
3111
  {"skip-slave-start", OPT_SKIP_SLAVE_START,
3112
 
   N_("If set, slave is not autostarted."),
 
3112
   N_("If set, slave is not started automatically."),
3113
3113
   (char**) &opt_skip_slave_start,
3114
3114
   (char**) &opt_skip_slave_start, 0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
3115
3115
  {"skip-stack-trace", OPT_SKIP_STACK_TRACE,
3198
3198
    (char**) &binlog_cache_size, (char**) &binlog_cache_size, 0, GET_ULL,
3199
3199
    REQUIRED_ARG, 32*1024L, IO_SIZE, ULONG_MAX, 0, IO_SIZE, 0},
3200
3200
  { "bulk_insert_buffer_size", OPT_BULK_INSERT_BUFFER_SIZE,
3201
 
    N_("Size of tree cache used in bulk insert optimisation. Note that this is "
 
3201
    N_("Size of tree cache used in bulk insert optimization. Note that this is "
3202
3202
       "a limit per thread!"),
3203
3203
    (char**) &global_system_variables.bulk_insert_buff_size,
3204
3204
    (char**) &max_system_variables.bulk_insert_buff_size,
3594
3594
    (char**) &opt_date_time_formats[DRIZZLE_TIMESTAMP_TIME],
3595
3595
    0, GET_STR, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
3596
3596
  {"tmp_table_size", OPT_TMP_TABLE_SIZE,
3597
 
   N_("If an internal in-memory temporary table exceeds this size, MySQL will"
 
3597
   N_("If an internal in-memory temporary table exceeds this size, Drizzle will"
3598
3598
      " automatically convert it to an on-disk MyISAM table."),
3599
3599
   (char**) &global_system_variables.tmp_table_size,
3600
3600
   (char**) &max_system_variables.tmp_table_size, 0, GET_ULL,