461
483
commandline_options.add_options()
462
484
("all-databases,A", po::value<bool>(&opt_alldbs)->default_value(false)->zero_tokens(),
463
485
_("Dump all the databases. This will be same as --databases with all databases selected."))
486
("all-tablespaces,Y", po::value<bool>(&opt_alltspcs)->default_value(false)->zero_tokens(),
488
("complete-insert,c", po::value<bool>(&opt_complete_insert)->default_value(false)->zero_tokens(),
464
490
("flush-logs,F", po::value<bool>(&flush_logs)->default_value(false)->zero_tokens(),
465
491
_("Flush logs file in server before starting dump. Note that if you dump many databases at once (using the option --databases= or --all-databases), the logs will be flushed for each database dumped. The exception is when using --lock-all-tables in this case the logs will be flushed only once, corresponding to the moment all tables are locked. So if you want your dump and the log flush to happen at the same exact moment you should use --lock-all-tables or --flush-logs"))
466
492
("force,f", po::value<bool>(&ignore_errors)->default_value(false)->zero_tokens(),