483
470
commandline_options.add_options()
484
471
("all-databases,A", po::value<bool>(&opt_alldbs)->default_value(false)->zero_tokens(),
485
472
_("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(),
490
473
("flush-logs,F", po::value<bool>(&flush_logs)->default_value(false)->zero_tokens(),
491
474
_("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"))
492
475
("force,f", po::value<bool>(&ignore_errors)->default_value(false)->zero_tokens(),