You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by zh...@apache.org on 2019/11/28 23:39:21 UTC

[incubator-doris] branch master updated (6e33308 -> ba3d16f)

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

zhaoc pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-doris.git.


    from 6e33308  Show tablet lists in EXPLAIN OlapScanNode (#2316)
     add ba3d16f  Add BinaryPrefixPage (#2308)

No new revisions were added by this update.

Summary of changes:
 be/src/olap/CMakeLists.txt                         |   1 +
 be/src/olap/rowset/segment_v2/binary_dict_page.cpp |  34 +++
 be/src/olap/rowset/segment_v2/binary_dict_page.h   |   5 +
 be/src/olap/rowset/segment_v2/binary_plain_page.h  |  33 +++
 .../olap/rowset/segment_v2/binary_prefix_page.cpp  | 276 +++++++++++++++++++++
 be/src/olap/rowset/segment_v2/binary_prefix_page.h | 179 +++++++++++++
 be/src/olap/rowset/segment_v2/bitshuffle_page.h    |  23 ++
 be/src/olap/rowset/segment_v2/encoding_info.cpp    |  15 ++
 .../rowset/segment_v2/frame_of_reference_page.h    |  35 +++
 be/src/olap/rowset/segment_v2/page_builder.h       |   9 +
 be/src/olap/rowset/segment_v2/plain_page.h         |  22 ++
 be/src/olap/rowset/segment_v2/rle_page.h           |  26 ++
 be/src/util/frame_of_reference_coding.cpp          | 125 ++++++++--
 be/src/util/frame_of_reference_coding.h            |  44 +++-
 be/test/olap/CMakeLists.txt                        |   1 +
 .../rowset/segment_v2/binary_dict_page_test.cpp    |   8 +
 .../rowset/segment_v2/binary_plain_page_test.cpp   |   9 +
 .../rowset/segment_v2/binary_prefix_page_test.cpp  | 180 ++++++++++++++
 .../rowset/segment_v2/bitshuffle_page_test.cpp     |  10 +-
 .../segment_v2/frame_of_reference_page_test.cpp    |  19 ++
 be/test/olap/rowset/segment_v2/plain_page_test.cpp |   8 +
 be/test/olap/rowset/segment_v2/rle_page_test.cpp   |  10 +-
 be/test/util/frame_of_reference_coding_test.cpp    |  85 +++++++
 run-ut.sh                                          |   1 +
 24 files changed, 1118 insertions(+), 40 deletions(-)
 create mode 100644 be/src/olap/rowset/segment_v2/binary_prefix_page.cpp
 create mode 100644 be/src/olap/rowset/segment_v2/binary_prefix_page.h
 create mode 100644 be/test/olap/rowset/segment_v2/binary_prefix_page_test.cpp


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