~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/pbms/src/parameters_ms.cc

  • Committer: Andrew Hutchings
  • Date: 2011-01-04 11:36:01 UTC
  • mto: This revision was merged to the branch mainline in revision 2057.
  • Revision ID: andrew@linuxjedi.co.uk-20110104113601-diiveyfl32dgaa6f
Refix using placement new for join code, vector for join cache buffer.
Also refix a bug in COND_CMP properly

Show diffs side-by-side

added added

removed removed

Lines of Context:
423
423
{
424
424
        context("port",
425
425
                po::value<port_constraint>(&pbms_port_number)->default_value(DEFAULT_PBMS_PORT),
426
 
                _("Port number to use for connection or 0 for default PBMS port "));
 
426
                N_("Port number to use for connection or 0 for default PBMS port "));
427
427
        context("repository-threshold",
428
428
                po::value<std::string>(&my_repository_threshold)->default_value(MS_REPO_THRESHOLD_DEF),
429
 
                _("The maximum size of a BLOB repository file."));
 
429
                N_("The maximum size of a BLOB repository file."));
430
430
        context("temp-log-threshold",
431
431
                po::value<std::string>(&my_temp_log_threshold)->default_value(MS_TEMP_LOG_THRESHOLD_DEF),
432
 
                _("The maximum size of a temorary BLOB log file."));
 
432
                N_("The maximum size of a temorary BLOB log file."));
433
433
        context("http-metadata-headers",
434
434
                po::value<std::string>(&my_http_metadata_headers)->default_value(MS_HTTP_METADATA_HEADERS_DEF),
435
 
                _("A ':' delimited list of metadata header names to be used to initialize "
 
435
                N_("A ':' delimited list of metadata header names to be used to initialize "
436
436
                   "the pbms_metadata_header table when a database is created."));
437
437
        context("garbage-threshold",
438
438
                po::value<percent_constraint>(&my_garbage_threshold)->default_value(MS_DEFAULT_GARBAGE_LEVEL),
439
 
                _("The percentage of garbage in a repository file before it is compacted."));
 
439
                N_("The percentage of garbage in a repository file before it is compacted."));
440
440
        context("temp-blob-timeout",
441
441
                po::value<uint32_nonzero_constraint>(&my_temp_blob_timeout)->default_value(MS_DEFAULT_TEMP_LOG_WAIT),
442
 
                _("The timeout, in seconds, for temporary BLOBs. Uploaded blob data is removed after this time, unless committed to the database."));
 
442
                N_("The timeout, in seconds, for temporary BLOBs. Uploaded blob data is removed after this time, unless committed to the database."));
443
443
        context("max-keep-alive",
444
444
                po::value<uint32_nonzero_constraint>(&my_temp_blob_timeout)->default_value(MS_DEFAULT_KEEP_ALIVE),
445
 
                _("The timeout, in milli-seconds, before the HTTP server will close an inactive HTTP connection."));
 
445
                N_("The timeout, in milli-seconds, before the HTTP server will close an inactive HTTP connection."));
446
446
        context("next-backup-db-id",
447
447
                po::value<uint32_nonzero_constraint>(&my_backup_db_id)->default_value(1),
448
 
                _("The next backup ID to use when backing up a PBMS database."));
 
448
                N_("The next backup ID to use when backing up a PBMS database."));
449
449
        context("watch-tables",
450
450
                po::value<std::string>(&my_table_list)->default_value("*"),
451
 
                _("A comma delimited list of tables to watch of the format: <database>.<table>, ..."));
 
451
                N_("A comma delimited list of tables to watch of the format: <database>.<table>, ..."));
452
452
        context("watch-disable",
453
 
                _("Enable PBMS daemon Insert/Update/Delete event scanning"));
 
453
                N_("Enable PBMS daemon Insert/Update/Delete event scanning"));
454
454
 
455
455
        context("before-insert-position",
456
456
                po::value<before_position_constraint>(&my_before_insert_position)->default_value(1),
457
 
                _("Before insert row event observer call position"));
 
457
                N_("Before insert row event observer call position"));
458
458
 
459
459
        context("before-update-position",
460
460
                po::value<before_position_constraint>(&my_before_update_position)->default_value(1),
461
 
                _("Before update row event observer call position"));
 
461
                N_("Before update row event observer call position"));
462
462
 
463
463
}
464
464
#endif