~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/logging_stats/logging_stats.cc

  • Committer: Joseph Daly
  • Date: 2010-08-19 01:17:00 UTC
  • mfrom: (1718 drizzle)
  • mto: (1725.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1726.
  • Revision ID: jdaly@rx7-20100819011700-zmv90s31dfjex4vu
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
372
372
static DRIZZLE_SYSVAR_UINT(bucket_count,
373
373
                           sysvar_logging_stats_bucket_count,
374
374
                           PLUGIN_VAR_RQCMDARG,
375
 
                           N_("Max number of vector buckets to construct for logging"),
 
375
                           N_("Max number of range locks to use for Scoreboard"),
376
376
                           NULL, /* check func */
377
377
                           NULL, /* update func */
378
378
                           10, /* default */
406
406
          N_("Max number of users that will be logged"));
407
407
  context("bucket-count",
408
408
          po::value<uint32_t>(&sysvar_logging_stats_bucket_count)->default_value(10),
409
 
          N_("Max number of vector buckets to construct for logging"));
 
409
          N_("Max number of range locks to use for Scoreboard"));
410
410
  context("scoreboard-size",
411
411
          po::value<uint32_t>(&sysvar_logging_stats_scoreboard_size)->default_value(2000),
412
412
          N_("Max number of concurrent sessions that will be logged"));