~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Andrew Hutchings
  • Date: 2010-12-06 12:40:05 UTC
  • mto: This revision was merged to the branch mainline in revision 1981.
  • Revision ID: andrew@linuxjedi.co.uk-20101206124005-socv6ejpzncexvar
Removed something I shouldn't have by accident

Show diffs side-by-side

added added

removed removed

Lines of Context:
816
816
    dump_databases(database_used);
817
817
    dump_all_tables();
818
818
  }
 
819
 
 
820
  if (vm.count("database-used") && ! vm.count("Table-used"))
 
821
  {
 
822
    dump_databases(vm["database-used"].as< vector<string> >());
 
823
    dump_all_tables();
 
824
  }
 
825
 
819
826
  if (opt_destination == DESTINATION_STDOUT)
820
827
    generate_dump();
821
828
  else