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

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


    from 0959fa2  [config](vectorized)(for-test) enable storage vec and low 
cardinality by default
     new f306fb0  [Bug][Vectorized] fix core dump with HLL and some refactor of 
Decompressor (#8668)
     new 38fbe13  [ubsan] avoid null bit offset to be 255 (#8675)
     new 9aeafb0  [refactor] remove useless code in DataTypeDecimal (#8707)
     new 3ec4249  [refactor] comment code converting decimal format (#8708)
     new 12666c2  [Bug] Fix DCHECK failed in runtime filter and mutable block 
(#8720)
     new bb20da4  [improvement](join) Support join project in query engine 
(#8722)
     new a41da6d  [fix](data-sink) Sinks call DataSink::close instead of 
operating _closed directly (#8727)
     new 820d1c7  [ubsan] fix some ubsan complains on vector and pointer (#8733)
     new 3e113de  [fix](sql-block-rule)Fix sql block rule bug (#8738)
     new 18ef28f  [fix] vectorization decimal avg inconsistent (#8746)
     new cbf4bf6  [docs] update team.md (#8749)
     new db847e2  [refactor] add some clang-tidy checks && some code style fix 
(#8752)

The 12 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .licenserc.yaml                                    |   1 +
 be/src/exec/decompressor.cpp                       |   4 +-
 be/src/exec/decompressor.h                         |  54 ++++----
 be/src/exec/line_reader.h                          |   2 +-
 be/src/exec/lzo_decompressor.cpp                   |   2 -
 be/src/exec/olap_scanner.cpp                       |   3 +
 be/src/exec/plain_text_line_reader.h               |  10 +-
 be/src/exec/tablet_sink.cpp                        |   4 +-
 be/src/exec/tablet_sink.h                          |   2 -
 be/src/exprs/expr_context.cpp                      |   6 +-
 be/src/exprs/expr_context.h                        |   5 -
 be/src/exprs/runtime_filter.cpp                    |   3 +-
 be/src/runtime/data_stream_sender.cpp              |   2 +-
 be/src/runtime/descriptors.cpp                     |   1 +
 be/src/runtime/descriptors.h                       |   7 +-
 be/src/runtime/export_sink.cpp                     |   5 +-
 be/src/runtime/mem_pool.cpp                        |   2 +-
 be/src/runtime/memory_scratch_sink.cpp             |   3 +-
 be/src/runtime/mysql_table_sink.cpp                |   5 +-
 be/src/runtime/odbc_table_sink.cpp                 |   5 +-
 be/src/runtime/result_sink.cpp                     |   3 +-
 .../vec/aggregate_functions/aggregate_function.h   |  11 +-
 .../aggregate_function_approx_count_distinct.cpp   |   2 +-
 .../aggregate_functions/aggregate_function_avg.cpp |   5 +-
 .../aggregate_functions/aggregate_function_avg.h   |  19 ++-
 .../aggregate_function_bitmap.cpp                  |  12 +-
 .../aggregate_function_combinator.h                |   2 +-
 .../aggregate_functions/aggregate_function_count.h |   4 +-
 .../aggregate_function_distinct.cpp                |  28 ++--
 .../aggregate_function_distinct.h                  |  24 +++-
 .../aggregate_function_min_max.h                   |  73 ++++++----
 .../aggregate_function_null.cpp                    |  32 +++--
 .../aggregate_functions/aggregate_function_null.h  |  33 +++--
 .../aggregate_function_percentile_approx.h         |  28 ++--
 .../aggregate_function_stddev.h                    |  14 +-
 .../aggregate_functions/aggregate_function_sum.cpp |   5 +-
 .../aggregate_functions/aggregate_function_sum.h   |   5 +-
 .../aggregate_function_uniq.cpp                    |  10 +-
 .../aggregate_function_window.cpp                  |   3 +-
 .../aggregate_function_window.h                    |  32 ++---
 be/src/vec/aggregate_functions/factory_helpers.h   |   4 +-
 be/src/vec/aggregate_functions/helpers.h           |  79 +++++++----
 .../vec/aggregate_functions/key_holder_helpers.h   |   9 +-
 be/src/vec/columns/column_string.cpp               |   7 +-
 be/src/vec/data_types/data_type_decimal.h          |   2 -
 be/src/vec/exec/join/vhash_join_node.cpp           | 151 +++++++++++++--------
 be/src/vec/exec/join/vhash_join_node.h             |   4 +
 be/src/vec/sink/result_sink.cpp                    |   3 +-
 be/src/vec/sink/vdata_stream_sender.cpp            |  19 ++-
 docs/en/community/team.md                          |  22 +--
 docs/zh-CN/community/team.md                       |  37 ++---
 .../apache/doris/blockrule/SqlBlockRuleMgr.java    |  21 ++-
 .../apache/doris/mysql/privilege/UserProperty.java |   7 +
 .../doris/blockrule/SqlBlockRuleMgrTest.java       |  40 +++++-
 gensrc/thrift/PlanNodes.thrift                     |   6 +
 regression-test/common/load/bitmap_basic_agg.sql   |   4 +
 regression-test/common/load/hll_basic_agg.sql      |   4 +
 regression-test/common/table/bitmap_basic_agg.sql  |   6 +
 regression-test/common/table/hll_basic_agg.sql     |   6 +
 regression-test/data/aggregate/aggregate.out       |   1 +
 .../complex_types/basic_agg_test.out}              |  11 +-
 .../complex_types/basic_agg_test.groovy}           |  17 +--
 62 files changed, 604 insertions(+), 327 deletions(-)
 create mode 100644 regression-test/common/load/bitmap_basic_agg.sql
 create mode 100644 regression-test/common/load/hll_basic_agg.sql
 create mode 100644 regression-test/common/table/bitmap_basic_agg.sql
 create mode 100644 regression-test/common/table/hll_basic_agg.sql
 copy regression-test/data/{correctness/test_select_constant.out => 
types/complex_types/basic_agg_test.out} (60%)
 copy regression-test/suites/{empty_table/load.groovy => 
types/complex_types/basic_agg_test.groovy} (71%)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to