We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd04af commit ec8d690Copy full SHA for ec8d690
excise.go
@@ -248,9 +248,8 @@ func determineLeftTableBounds(
248
// The key is owned by the range key iter, so we need to copy it.
249
lastRangeKey = slices.Clone(rkey.End)
250
}
251
- lastRangeKeyKind := rkey.Keys[0].Kind()
252
leftTable.ExtendRangeKeyBounds(cmp, originalTable.SmallestRangeKey,
253
- base.MakeExclusiveSentinelKey(lastRangeKeyKind, lastRangeKey))
+ base.MakeExclusiveSentinelKey(rkey.LargestKey().Kind(), lastRangeKey))
254
255
256
return nil
0 commit comments