~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to client/mysqlbinlog.cc

  • Committer: Brian Aker
  • Date: 2008-07-15 06:45:16 UTC
  • Revision ID: brian@tangent.org-20080715064516-fnbq7kowh7w57bxj
Merge Monty's code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
636
636
 
637
637
 
638
638
  /* Write header and base64 output to cache */
639
 
  ev->print_header(head, print_event_info, FALSE);
640
 
  ev->print_base64(body, print_event_info, FALSE);
 
639
  ev->print_header(head, print_event_info, false);
 
640
  ev->print_base64(body, print_event_info, false);
641
641
 
642
642
  /* Read data from cache and write to result file */
643
643
  if (copy_event_cache_to_file_and_reinit(head, result_file) ||
756
756
          goto end;
757
757
      }
758
758
      else
759
 
        ce->print(result_file, print_event_info, TRUE);
 
759
        ce->print(result_file, print_event_info, true);
760
760
 
761
761
      // If this binlog is not 3.23 ; why this test??
762
762
      if (glob_description_event->binlog_version >= 3)
801
801
          my_open() in Load_log_processor::append().
802
802
        */
803
803
        convert_path_to_forward_slashes((char*) ce->fname);
804
 
        ce->print(result_file, print_event_info, TRUE);
 
804
        ce->print(result_file, print_event_info, true);
805
805
        my_free((char*)ce->fname,MYF(MY_WME));
806
806
        delete ce;
807
807
      }