[bugfix](reader) make segment_overlapping meta correct (#16793)
This commit is contained in:
@ -727,7 +727,7 @@ bool BetaRowsetWriter::_is_segment_overlapping(
|
||||
for (auto segment_encode_key : segments_encoded_key_bounds) {
|
||||
auto cur_min = segment_encode_key.min_key();
|
||||
auto cur_max = segment_encode_key.max_key();
|
||||
if (cur_min < last) {
|
||||
if (cur_min <= last) {
|
||||
return true;
|
||||
}
|
||||
last = cur_max;
|
||||
|
||||
Reference in New Issue
Block a user