mirror of https://github.com/milvus-io/milvus.git
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
parent
240f766511
commit
5be9cebd67
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue