Commit c3124174 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

MDEV-17168 mariabackup reports "failed to open bitmap directory"

MariaDB does not support changed page tracking, since 10.2. Remove bitmap
initialization
parent c8bb43a9
......@@ -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);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment