~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/drizzledump.cc

  • Committer: Monty
  • Date: 2008-10-02 05:41:33 UTC
  • mfrom: (398.1.10 codestyle)
  • Revision ID: mordred@scylla.inaugust.com-20081002054133-tyxv5bmqpazfaqqi
Merged up to 408 of stdint-includes-fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2668
2668
    check_io(md_result_file);
2669
2669
  }
2670
2670
  if (lock_tables)
2671
 
    VOID(drizzle_query_with_error_report(drizzle, 0, "UNLOCK TABLES"));
 
2671
    drizzle_query_with_error_report(drizzle, 0, "UNLOCK TABLES");
2672
2672
  if (flush_privileges && using_mysql_db == 0)
2673
2673
  {
2674
2674
    fprintf(md_result_file,"\n--\n-- Flush Grant Tables \n--\n");
2806
2806
    check_io(md_result_file);
2807
2807
  }
2808
2808
  if (lock_tables)
2809
 
    VOID(drizzle_query_with_error_report(drizzle, 0, "UNLOCK TABLES"));
 
2809
    drizzle_query_with_error_report(drizzle, 0, "UNLOCK TABLES");
2810
2810
  return(0);
2811
2811
} /* dump_selected_tables */
2812
2812