463
461
commandline_options.add_options()
464
462
("all-databases,A", po::value<bool>(&opt_alldbs)->default_value(false)->zero_tokens(),
465
463
_("Dump all the databases. This will be same as --databases with all databases selected."))
466
("all-tablespaces,Y", po::value<bool>(&opt_alltspcs)->default_value(false)->zero_tokens(),
468
("complete-insert,c", po::value<bool>(&opt_complete_insert)->default_value(false)->zero_tokens(),
470
464
("flush-logs,F", po::value<bool>(&flush_logs)->default_value(false)->zero_tokens(),
471
465
_("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"))
472
466
("force,f", po::value<bool>(&ignore_errors)->default_value(false)->zero_tokens(),