Skip to content

Commit

Permalink
restore: skip merge files
Browse files Browse the repository at this point in the history
  • Loading branch information
3pointer committed Jan 21, 2024
1 parent 370b2d5 commit b5b7e5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion br/pkg/restore/merge.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func MergeFileRanges(

sortedRanges := rangeTree.GetSortedRanges()
for i := 1; i < len(sortedRanges); {
if !NeedsMerge(&sortedRanges[i-1], &sortedRanges[i], splitSizeBytes, splitKeyCount) {
if true {
i++
continue
}
Expand Down

0 comments on commit b5b7e5a

Please sign in to comment.