DAR icon indicating copy to clipboard operation
DAR copied to clipboard

Apply delta patch when merging

Open AndrolGenhald opened this issue 7 months ago • 1 comments

I'm trying to merge a full backup with a later differential backup to create a new full backup with the same data as the differential, based on this mail thread here. The issue I'm running into is that I have backups with delta signatures, and with the overwriting policy {!(~I)}[Rr] {~S}[O*] P* ; {~s}[*o] *p what appears to happen is that for files that had a delta change recorded, it takes the data that was saved for the delta and stores that in the merged archive. Then when I try to restore from it, it doesn't work for those files because it only has the delta patch, and not the full contents of the file. What I would like to happen is for the merge operation to take the data from the original archive, apply the delta patch, and store that result in the merged archive, but as far as I can tell that would require a new overwriting policy option (and I'm quite sure that also wouldn't work with the -ak flag since it would require decompressing to apply the patch).

AndrolGenhald avatar Nov 09 '23 19:11 AndrolGenhald