~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzle.cc

  • Committer: lbieber
  • Date: 2010-10-06 05:45:27 UTC
  • mfrom: (1814.1.4 build)
  • Revision ID: lbieber@orisndriz08-20101006054527-gj7uzuuyptrc7dsb
Merge Shrews - Add options to the GPB files that will be used by protoc when generating Java source files.
Merge Andrew - fix bug 654568: Pandora --enable/disable message for plugins incorrect
Merge Andrew - fix bug 653707: drizzle --shutdown reading table information

Show diffs side-by-side

added added

removed removed

Lines of Context:
1357
1357
  ("raw,r", po::value<bool>(&opt_raw_data)->default_value(false)->zero_tokens(),
1358
1358
  N_("Write fields without conversion. Used with --batch.")) 
1359
1359
  ("disable-reconnect", N_("Do not reconnect if the connection is lost."))
1360
 
  ("shutdown", po::value<bool>(&opt_shutdown)->default_value(false)->zero_tokens(),
 
1360
  ("shutdown", po::value<bool>()->zero_tokens(),
1361
1361
  N_("Shutdown the server"))
1362
1362
  ("silent,s", N_("Be more silent. Print results with a tab as separator, each row on new line."))
1363
1363
  ("tee", po::value<string>(),
1495
1495
  opt_rehash= (vm.count("disable-auto-rehash")) ? false : true;
1496
1496
  opt_reconnect= (vm.count("disable-reconnect")) ? false : true;
1497
1497
 
 
1498
  /* Don't rehash with --shutdown */
 
1499
  if (vm.count("shutdown"))
 
1500
  {
 
1501
    opt_rehash= false;
 
1502
    opt_shutdown= true;
 
1503
  }
 
1504
 
1498
1505
  if (vm.count("delimiter"))
1499
1506
  {
1500
1507
    /* Check that delimiter does not contain a backslash */