This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
new e294248cdd [bugfix](vertical compaction) reset is_same flag when goto
next row (#17023)
e294248cdd is described below
commit e294248cdd4401634cfcdb417a982f580bd5b61b
Author: yixiutt <[email protected]>
AuthorDate: Wed Feb 22 17:38:53 2023 +0800
[bugfix](vertical compaction) reset is_same flag when goto next row (#17023)
pr in master: #14981
---
be/src/vec/olap/vertical_merge_iterator.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/be/src/vec/olap/vertical_merge_iterator.cpp
b/be/src/vec/olap/vertical_merge_iterator.cpp
index 712feb9408..6b7ab0b060 100644
--- a/be/src/vec/olap/vertical_merge_iterator.cpp
+++ b/be/src/vec/olap/vertical_merge_iterator.cpp
@@ -299,6 +299,7 @@ Status VerticalMergeIteratorContext::init(const
StorageReadOptions& opts) {
Status VerticalMergeIteratorContext::advance() {
// NOTE: we increase _index_in_block directly to valid one check
+ _is_same = false;
do {
_index_in_block++;
if (LIKELY(_index_in_block < _block->rows())) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]