This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a change to branch auto-pick-68111-branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
discard e0859e82137 [fix](fe) Report active compute group in processlist
(#68111)
add 73cc2da553b branch-4.1: [fix](test) sync Paimon external paths output
(#68167)
add 8c2803ed866 branch-4.1: [fix](subquery) Preserve generate child
outputs for subqueries #67807 (#68173)
add b98482ddafd branch-4.1: [fix](function) Align interval folding with
runtime #67840 (#68174)
add 80f3a817c3c branch-4.1: [fix](fd) Guard uniform aggregate inference by
participation #67881 (#68175)
add 851858d5702 branch-4.1: [fix](inverted index) Add a norms index
property and a BE config to skip norms on variant paths (#68140)
add 5bcabaa679a branch-4.1: [Fix](regexp) Fix empty constant pattern
matching in regexp (#68179)
add 1aa13de013a branch-4.1: [fix](analysis) Hide internal HAVING helper
outputs #67812 (#68075)
add 8a389b3f546 branch-4.1: [fix](build) add -dead_strip on macOS to fix
dyld cache crash for large BE binary #61742 (#68218)
add 2c8d7c1f347 branch-4.1: [fix](inverted index) Persist empty index
files and stop writing orphan ones #67859 (#68082)
add ccd8c839e0b [fix](fe) Report active compute group in processlist
(#68111)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (e0859e82137)
\
N -- N -- N refs/heads/auto-pick-68111-branch-4.1 (ccd8c839e0b)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
be/CMakeLists.txt | 5 +
be/src/common/config.cpp | 5 +
be/src/common/config.h | 5 +
be/src/exprs/function/like.cpp | 155 +++++------
be/src/exprs/function/like.h | 11 +-
be/src/exprs/function/match.cpp | 5 +
be/src/exprs/function/regexps.h | 4 +
.../storage/compaction/collection_statistics.cpp | 20 +-
be/src/storage/index/index_file_writer.cpp | 24 +-
.../index/inverted/inverted_index_parser.cpp | 7 +
.../storage/index/inverted/inverted_index_parser.h | 7 +
.../index/inverted/inverted_index_writer.cpp | 17 +-
.../storage/index/inverted/query/regexp_query.cpp | 4 +
.../query_v2/regexp_query/regexp_weight.cpp | 4 +
.../index/inverted/similarity/bm25_similarity.cpp | 2 +-
be/src/storage/task/index_builder.cpp | 33 ++-
be/src/util/hyperscan_util.cpp | 93 +++++++
be/src/{io/fs/path.h => util/hyperscan_util.h} | 11 +-
be/test/exprs/function/function_like_test.cpp | 174 ++++++++++++-
be/test/exprs/function/function_match_test.cpp | 21 ++
.../exprs/function/function_multi_match_test.cpp | 10 +
be/test/io/fs/s3_file_writer_test.cpp | 24 +-
be/test/storage/index/index_builder_test.cpp | 153 ++++++++++-
.../index/inverted/empty_index_file_test.cpp | 253 ++++++++++++++++--
.../index/inverted/query/regexp_query_test.cpp | 26 +-
.../index/inverted/query_v2/regexp_query_test.cpp | 17 +-
.../storage/segment/inverted_index_writer_test.cpp | 106 +++++++-
.../index_storage_variant_debug_point_test.cpp | 1 +
.../apache/doris/analysis/InvertedIndexUtil.java | 9 +
.../nereids/rules/analysis/FillUpMissingSlots.java | 4 +-
.../nereids/rules/analysis/NormalizeGenerate.java | 4 +-
.../functions/executable/NumericArithmetic.java | 18 +-
.../trees/plans/logical/LogicalAggregate.java | 4 +-
.../plans/physical/PhysicalHashAggregate.java | 4 +-
.../apache/doris/nereids/util/ExpressionUtils.java | 20 ++
.../java/org/apache/doris/qe/SessionVariable.java | 8 +-
.../analysis/InvertedIndexNormsPropertyTest.java | 56 ++++
.../doris/nereids/properties/UniformTest.java | 34 +++
.../rules/analysis/FillUpMissingSlotsTest.java | 20 ++
.../rules/analysis/NormalizeAggregateTest.java | 37 +--
.../rules/analysis/NormalizeGenerateTest.java | 51 ++++
.../executable/NumericArithmeticTest.java | 32 +++
.../org/apache/doris/qe/SessionVariablesTest.java | 11 +
gensrc/thrift/PaloInternalService.thrift | 3 +
.../write/test_paimon_write_external_paths.out | 35 +--
.../test_variant_subcolumn_index_norms.out | 16 ++
.../interval_constant_fold_consistency.out} | 9 +-
.../test_generate_subquery_output.out} | 17 +-
.../eliminate_group_by_key_by_uniform.out | 15 ++
.../test_having_with_aggregate_function.out | 4 +
.../test_string_function_regexp.out | 35 ++-
.../test_empty_index_file_lifecycle.groovy | 178 +++++++++++++
.../test_variant_empty_index_file.groovy | 95 ++++---
.../test_variant_subcolumn_index_norms.groovy | 285 +++++++++++++++++++++
.../interval_constant_fold_consistency.groovy} | 34 +--
.../test_generate_subquery_output.groovy} | 44 ++--
.../eliminate_group_by_key_by_uniform.groovy | 93 ++++++-
.../test_having_with_aggregate_function.groovy | 15 ++
.../test_string_function_regexp.groovy | 43 ++++
59 files changed, 2142 insertions(+), 288 deletions(-)
create mode 100644 be/src/util/hyperscan_util.cpp
copy be/src/{io/fs/path.h => util/hyperscan_util.h} (79%)
create mode 100644
fe/fe-core/src/test/java/org/apache/doris/analysis/InvertedIndexNormsPropertyTest.java
create mode 100644
fe/fe-core/src/test/java/org/apache/doris/nereids/rules/analysis/NormalizeGenerateTest.java
create mode 100644
regression-test/data/inverted_index_p0/test_variant_subcolumn_index_norms.out
copy
regression-test/data/{auto_increment_p2/test_unique_auto_inc_concurrent.out =>
nereids_function_p0/scalar_function/interval_constant_fold_consistency.out}
(50%)
copy
regression-test/data/{query_p0/sql_functions/string_functions/sql/like_wild_many_begin_2.out
=> nereids_p0/test_generate_subquery_output.out} (62%)
create mode 100644
regression-test/suites/inverted_index_p0/test_empty_index_file_lifecycle.groovy
create mode 100644
regression-test/suites/inverted_index_p0/test_variant_subcolumn_index_norms.groovy
copy regression-test/suites/{nereids_syntax_p0/test_show_keys.groovy =>
nereids_function_p0/scalar_function/interval_constant_fold_consistency.groovy}
(60%)
copy
regression-test/suites/{datatype_p0/timestamptz/test_timestamptz_struct_insert.groovy
=> nereids_p0/test_generate_subquery_output.groovy} (53%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]