~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Stewart Smith
  • Date: 2011-02-15 23:05:12 UTC
  • mto: (2173.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 2174.
  • Revision ID: stewart@flamingspork.com-20110215230512-usudgq0yifa80llh
remove unused drizzledump option: complete-insert

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
#define EX_DRIZZLEERR 2
59
59
#define EX_EOF 5 /* ferror for output file was got */
60
60
 
61
 
bool opt_complete_insert= false;
62
61
bool  verbose= false;
63
62
static bool use_drizzle_protocol= false;
64
63
bool ignore_errors= false;
462
461
  commandline_options.add_options()
463
462
  ("all-databases,A", po::value<bool>(&opt_alldbs)->default_value(false)->zero_tokens(),
464
463
  _("Dump all the databases. This will be same as --databases with all databases selected."))
465
 
  ("complete-insert,c", po::value<bool>(&opt_complete_insert)->default_value(false)->zero_tokens(),
466
 
  _("Use complete insert statements."))
467
464
  ("flush-logs,F", po::value<bool>(&flush_logs)->default_value(false)->zero_tokens(),
468
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"))
469
466
  ("force,f", po::value<bool>(&ignore_errors)->default_value(false)->zero_tokens(),