~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/transaction_log/utilities/transaction_reader.cc

  • Committer: Lee Bieber
  • Date: 2011-04-13 21:07:45 UTC
  • mfrom: (2252.1.29 program-options)
  • mto: This revision was merged to the branch mainline in revision 2277.
  • Revision ID: kalebral@gmail.com-20110413210745-2e3tukhwa72zggcz
Merge Olaf - Refactor Program Options usage

Show diffs side-by-side

added added

removed removed

Lines of Context:
709
709
    return -1;
710
710
  }
711
711
 
712
 
  bool do_checksum= vm.count("checksum") ? true : false;
713
 
  bool use_innodb_replication_log= vm.count("use-innodb-replication-log") ? true : false;
714
 
  bool ignore_events= vm.count("ignore-events") ? true : false;
715
 
  bool print_as_raw= vm.count("raw") ? true : false;
716
 
  bool summarize= vm.count("summarize") ? true : false;
 
712
  bool do_checksum= not not vm.count("checksum"); // not not: avoid silly ICC warning
 
713
  bool use_innodb_replication_log= not not vm.count("use-innodb-replication-log");
 
714
  bool ignore_events= not not vm.count("ignore-events");
 
715
  bool print_as_raw= not not vm.count("raw");
 
716
  bool summarize= not not vm.count("summarize");
717
717
 
718
718
  /*
719
719
   * InnoDB transaction log processing