This is an automated email from the ASF dual-hosted git repository.

dataroaring pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new 63f4b35f95 [bugfix](short_key) fix short key coder for nullable key 
(#14298)
63f4b35f95 is described below

commit 63f4b35f95847158320b75153e227a7f343d0829
Author: yixiutt <102007456+yixi...@users.noreply.github.com>
AuthorDate: Tue Nov 22 09:27:22 2022 +0800

    [bugfix](short_key) fix short key coder for nullable key (#14298)
---
 be/src/olap/rowset/segment_v2/segment_writer.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/be/src/olap/rowset/segment_v2/segment_writer.cpp 
b/be/src/olap/rowset/segment_v2/segment_writer.cpp
index 62b8ecc3b1..f644ae87b8 100644
--- a/be/src/olap/rowset/segment_v2/segment_writer.cpp
+++ b/be/src/olap/rowset/segment_v2/segment_writer.cpp
@@ -233,6 +233,7 @@ std::string SegmentWriter::_encode_keys(
             } else {
                 encoded_keys.push_back(KEY_NULL_LAST_MARKER);
             }
+            ++cid;
             continue;
         }
         encoded_keys.push_back(KEY_NORMAL_MARKER);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to