Skip to content
Permalink
Browse files
MDEV-17168 mariabackup reports "failed to open bitmap directory"
MariaDB does not support changed page tracking, since 10.2. Remove bitmap
initialization
  • Loading branch information
vaintroub committed Sep 11, 2018
1 parent c8bb43a commit c312417
Showing 1 changed file with 0 additions and 13 deletions.
@@ -4257,19 +4257,6 @@ xtrabackup_backup_func()
}
debug_sync_point("xtrabackup_suspend_at_start");

if (xtrabackup_incremental) {
if (!xtrabackup_incremental_force_scan) {
changed_page_bitmap = xb_page_bitmap_init();
}
if (!changed_page_bitmap) {
msg("mariabackup: using the full scan for incremental "
"backup\n");
} else if (incremental_lsn != checkpoint_lsn_start) {
/* Do not print that bitmaps are used when dummy bitmap
is build for an empty LSN range. */
msg("mariabackup: using the changed page bitmap\n");
}
}

ut_a(xtrabackup_parallel > 0);

0 comments on commit c312417

Please sign in to comment.