List:Commits« Previous MessageNext Message »
From:Chuck Bell Date:September 18 2008 5:56pm
Subject:bzr commit into mysql-6.0-backup branch (cbell:2696) Bug#39523
View as plain text  
#At file:///D:/source/bzr/mysql-6.0-bug-39523/

 2696 Chuck Bell	2008-09-18
      BUG#39523 Backup file missing from backup history log when written as FILE. 
      
      Patch adds missing write to file for column 'backup_file'.
modified:
  sql/log.cc

=== modified file 'sql/log.cc'
--- a/sql/log.cc	2008-09-11 18:21:54 +0000
+++ b/sql/log.cc	2008-09-18 17:55:53 +0000
@@ -3338,6 +3338,8 @@ bool MYSQL_BACKUP_LOG::write(THD *thd, s
       goto err;
     if (write_str(user))
       goto err;
+    if (write_str(history_data->backup_file))
+      goto err;
     if (write_str(history_data->user_comment))
       goto err;
     if (write_str(history_data->command))

Thread
bzr commit into mysql-6.0-backup branch (cbell:2696) Bug#39523Chuck Bell18 Sep
  • Re: bzr commit into mysql-6.0-backup branch (cbell:2696) Bug#39523Jørgen Løland25 Sep