Skip to content
Permalink
Browse files
Fixed wrong printf in mariabackup
  • Loading branch information
montywi committed Sep 16, 2018
1 parent e89b611 commit 4dc20ff
Showing 1 changed file with 1 addition and 1 deletion.
@@ -672,7 +672,7 @@ static void backup_optimized_ddl_op(ulint space_id)
*/
static void backup_optimized_ddl_op_fail(ulint space_id) {
ut_a(opt_no_lock);
msg("DDL tracking : optimized DDL on space %zu\n");
msg("DDL tracking : optimized DDL on space %lu\n", space_id);
if (ddl_tracker.tables_in_backup.find(space_id) != ddl_tracker.tables_in_backup.end()) {
msg("ERROR : Optimized DDL operation detected in the late phase of backup."
"Backup is inconsistent. Remove --no-lock option to fix.\n");

0 comments on commit 4dc20ff

Please sign in to comment.