You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by kx...@apache.org on 2023/06/20 15:27:14 UTC

[doris] branch branch-2.0 updated (19dd35f908 -> 6d579d924d)

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

kxiao pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git


    from 19dd35f908 [doc](fix)  cold hot separation cache doc (#20994)
     add 9eade148dd [enhancement](merge-on-write) add primary key data page size config (#20961)
     add 493f9f563c [chore](third-party) temporary rollback brpc to 1.4 (#21011)
     add 190debaac9 [Improvement](load) single partition load optimize (#20876)
     add 55a6649da9 [fix](testcase) fix test case failure of insert null value into not null column (#20963)
     add f10258577b [Fix](Planner) Fix group concat with multi distinct and segs (#20912)
     add 622ef63c69 [fix](memory) fix `bthread_setspecific` error in rpc done.run() (#20999)
     add ce1b39e79d [fix](profile) avoid unnecessary refresh profile of TabletsChannel
     add 7a58a69aa9 [Fix](inverted index) skip index compaction when src rs did not have inverted index (#21010)
     add 2c11ce0a02 [bugfix](topn) fix key topn merge block conflict with index predicate result columns (#20820)
     add b70a14d9c9 [fix](merge-on-write) fix that delete bitmap is not calculated correctly when has sequence column (#20955)
     add d7cc05502a [typo](doc) To access a Kafka cluster with PLAIN authentication enabled (#21019)
     add 6d579d924d [fix](profile) delete useless profile add_child #20989

No new revisions were added by this update.

Summary of changes:
 be/src/common/config.cpp                           |     2 +
 be/src/common/config.h                             |     2 +
 be/src/common/consts.h                             |     1 +
 be/src/io/fs/stream_load_pipe.cpp                  |     4 +-
 be/src/olap/compaction.cpp                         |     9 +-
 be/src/olap/delta_writer.cpp                       |     1 -
 be/src/olap/primary_key_index.cpp                  |     1 +
 .../rowset/segment_v2/indexed_column_reader.cpp    |     3 +
 .../rowset/segment_v2/indexed_column_writer.cpp    |     1 +
 .../olap/rowset/segment_v2/indexed_column_writer.h |     1 +
 .../segment_v2/inverted_index_compaction.cpp       |    10 +
 be/src/olap/tablet.cpp                             |     6 +-
 be/src/pipeline/exec/exchange_sink_buffer.cpp      |     4 +-
 be/src/runtime/buffer_control_block.cpp            |     6 +-
 be/src/runtime/load_channel.cpp                    |     8 +-
 be/src/runtime/tablets_channel.cpp                 |    17 +-
 be/src/runtime/tablets_channel.h                   |     6 +-
 be/src/runtime/thread_context.h                    |    32 +
 be/src/service/internal_service.cpp                |     1 -
 be/src/util/ref_count_closure.h                    |     2 +-
 be/src/vec/common/sort/sorter.h                    |     2 -
 be/src/vec/core/block.cpp                          |    33 +
 be/src/vec/core/block.h                            |     3 +
 be/src/vec/exec/join/vjoin_node_base.cpp           |     1 -
 be/src/vec/exec/scan/vscanner.cpp                  |     4 +
 be/src/vec/functions/function_cast.h               |     3 +-
 be/src/vec/olap/vcollect_iterator.cpp              |    19 +
 be/src/vec/sink/vdata_stream_sender.cpp            |     4 +-
 be/src/vec/sink/vtablet_sink.cpp                   |   100 +-
 be/src/vec/sink/vtablet_sink.h                     |     7 +-
 .../import/import-way/routine-load-manual.md       |    28 +
 .../import/import-way/routine-load-manual.md       |    28 +
 .../org/apache/doris/analysis/AggregateInfo.java   |     8 +-
 .../test_key_topn_merge_block_columns1.csv         | 10000 +++++++++++++++++++
 .../test_key_topn_merge_block_columns2.csv         | 10000 +++++++++++++++++++
 .../query_p0/group_concat/test_group_concat.out    |     4 +
 .../test_key_topn_merge_block_columns.groovy       |    76 +
 .../suites/insert_p0/insert_invalid.groovy         |     8 +-
 .../query_p0/group_concat/test_group_concat.groovy |     9 +
 regression-test/suites/statistics/test_ddl.groovy  |     1 +
 thirdparty/download-thirdparty.sh                  |     2 +-
 thirdparty/vars.sh                                 |     8 +-
 42 files changed, 20401 insertions(+), 64 deletions(-)
 create mode 100644 regression-test/data/datatype_p0/scalar_types/test_key_topn_merge_block_columns1.csv
 create mode 100644 regression-test/data/datatype_p0/scalar_types/test_key_topn_merge_block_columns2.csv
 create mode 100644 regression-test/suites/datatype_p0/scalar_types/test_key_topn_merge_block_columns.groovy


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