fix: fix compare two column move cursor bug (#41054)

#41033

Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
This commit is contained in:
zhagnlu 2025-04-02 20:08:21 +08:00 committed by Li Liu
parent cdae44e242
commit 21069e2a8c

View File

@ -84,6 +84,7 @@ class SegmentChunkReader {
if (++processed_rows >= batch_size) {
current_chunk_id = chunk_id;
current_chunk_pos = i + 1;
break;
}
}
}
@ -108,6 +109,7 @@ class SegmentChunkReader {
if (++processed_rows >= batch_size) {
current_chunk_id = chunk_id;
current_chunk_pos = i + 1;
break;
}
}
}