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

#41033

Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
pull/41080/head
zhagnlu 2025-04-02 20:08:21 +08:00 committed by GitHub
parent 240f766511
commit 5be9cebd67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

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;
}
}
}