This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a change to branch auto-pick-57382-branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git
discard 03e4e4cad0c [fix](tablet report)Replace tablet report with
ForkJoinPool (#57382)
add 59661fcb7d1 branch-4.0: [chore](log) return error to caller when
get_tablet in cloud mode #57520 (#57901)
add e818321d9bd branch-4.0: [feature](inverted index) add multi position
PhraseQuery support to search function #57588 (#57897)
add 841aa792d53 branch-4.0: [fix](compile) compiled failed due to parallel
merge (#57936)
add 5d6e99e5130 branch-4.0: [enhancement](load)add LogicalPostProject to
cast outputs according to dest table's schema #57579 (#57940)
add 94065c6950c branch-4.0: [chore] (audit) generate digest string for
LogicalPlanAdapter (#57930)
add 3c3a396bb66 branch-4.0: [fix](java udf) fix possible deadlock when udf
closed in bprc #55302 (#57944)
add e673e35e6fa branch-4.0: [chore](cast) simplify CastExpr's code #57775
(#57905)
add e052dd23fa4 branch-4.0: [Chore](job) remove unless code for streaming
job #57873 (#57929)
add 4142dc795f0 branch-4.0: [improve](ann index)Accumulate multiple small
batches before training #57623 (#57932)
add 43c2dbee2dd branch-4.0: [opt](lazy topn) set row id's unique id when
new it #57867 (#57952)
add fd8f26682a0 branch-4.0: [chore](type) remove useless code in type
#57823 (#57906)
add 00099eef830 branch-4.0: [enhancement](memory) add jvm information into
memory profile page in BE #57917 (#57928)
add e77d52386cb branch-4.0: [Bug](udf) fix the _udf_close_workers thread
pool not stop when exit #57918 (#57956)
add bc4e28f8d28 branch-4.0: [Fix](job) add callback for streaming job when
load image #57852 (#57947)
add b2f66d99f9b branch-4.0: [fix](broker load) Fix strict_mode in broker
load not work #57825 (#57964)
add 1c18f2c34f1 branch-4.0: [Enhancement](regexp) Support zero-width
assertions in some regexp functions #57643 (#57948)
add e15512d0910 branch-4.0: [fix](memtable) add check when memtable init
aggregate function to avoid core dump #57934 (#57969)
add 5c27d99d99b [fix](tablet report)Replace tablet report with
ForkJoinPool (#57382)
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 (03e4e4cad0c)
\
N -- N -- N refs/heads/auto-pick-57382-branch-4.0 (5c27d99d99b)
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/src/cloud/cloud_tablet_mgr.cpp | 17 +-
be/src/olap/memtable.cpp | 4 +
.../segment_v2/ann_index/ann_index_writer.cpp | 35 +-
.../rowset/segment_v2/ann_index/ann_index_writer.h | 7 +
.../segment_v2/ann_index/faiss_ann_index.cpp | 28 +-
.../inverted_index/query/query_helper.cpp | 5 +
.../segment_v2/inverted_index/query/query_helper.h | 2 +
.../segment_v2/inverted_index/query_v2/doc_set.h | 106 ++-
.../inverted_index/query_v2/intersection.cpp | 36 +-
.../inverted_index/query_v2/nullable_scorer.h | 77 ++
.../query_v2/phrase_query/multi_phrase_query.h | 71 ++
.../query_v2/phrase_query/multi_phrase_weight.h | 113 +++
.../query_v2/phrase_query/phrase_query.h | 30 +-
.../query_v2/phrase_query/phrase_scorer.cpp | 3 +-
.../query_v2/phrase_query/phrase_weight.h | 67 +-
.../query_v2/phrase_query/postings_with_offset.h | 4 -
.../query_v2/postings/loaded_postings.cpp | 136 ++++
.../{intersection.h => postings/loaded_postings.h} | 36 +-
.../query_v2/regexp_query/regexp_query.h | 3 +-
.../query_v2/regexp_query/regexp_weight.cpp | 29 +-
.../query_v2/regexp_query/regexp_weight.h | 5 +-
.../segment_v2/inverted_index/query_v2/scorer.h | 11 +-
.../inverted_index/query_v2/segment_postings.h | 71 +-
.../inverted_index/query_v2/union/simple_union.cpp | 143 ++++
.../{intersection.h => union/simple_union.h} | 37 +-
.../segment_v2/inverted_index/query_v2/weight.h | 31 +
.../query_v2/wildcard_query/wildcard_query.h | 3 +-
.../query_v2/wildcard_query/wildcard_weight.h | 8 +-
be/src/runtime/exec_env.h | 3 +
be/src/runtime/exec_env_init.cpp | 7 +
be/src/runtime/memory/memory_profile.cpp | 18 +-
be/src/runtime/memory/memory_profile.h | 4 +
be/src/runtime/runtime_state.h | 6 +
be/src/util/doris_metrics.cpp | 4 +
be/src/util/doris_metrics.h | 2 +
be/src/vec/exprs/vcast_expr.cpp | 3 +-
be/src/vec/functions/function_java_udf.cpp | 34 +-
be/src/vec/functions/function_regexp.cpp | 216 ++++--
be/src/vec/functions/function_search.cpp | 39 +-
be/src/vec/functions/like.cpp | 26 +-
be/src/vec/functions/like.h | 4 +
.../inverted_index/query_v2/doc_set_test.cpp | 709 ++++++++++++------
.../query_v2/loaded_postings_test.cpp | 296 ++++++++
..._query_test.cpp => multi_phrase_query_test.cpp} | 466 +++++++++---
.../inverted_index/query_v2/phrase_query_test.cpp | 128 +++-
.../query_v2/segment_postings_test.cpp | 361 +++++++---
.../inverted_index/query_v2/simple_union_test.cpp | 568 +++++++++++++++
.../olap/vector_search/ann_index_writer_test.cpp | 89 +++
.../java/org/apache/doris/catalog/ArrayType.java | 20 +-
.../java/org/apache/doris/catalog/MapType.java | 22 +-
.../org/apache/doris/catalog/MultiRowType.java | 79 --
.../org/apache/doris/catalog/PrimitiveType.java | 6 +-
.../java/org/apache/doris/catalog/ScalarType.java | 195 -----
.../java/org/apache/doris/catalog/StructType.java | 39 -
.../main/java/org/apache/doris/catalog/Type.java | 797 +--------------------
.../java/org/apache/doris/catalog/VariantType.java | 37 +-
.../java/org/apache/doris/analysis/CastExpr.java | 115 +--
.../main/java/org/apache/doris/analysis/Expr.java | 21 -
.../apache/doris/analysis/FunctionCallExpr.java | 190 -----
.../org/apache/doris/analysis/TryCastExpr.java | 22 +-
.../apache/doris/catalog/FunctionTypeDeducers.java | 88 ---
.../org/apache/doris/job/manager/JobManager.java | 3 +
.../job/offset/s3/S3SourceOffsetProvider.java | 26 +-
.../apache/doris/load/loadv2/LoadLoadingTask.java | 1 +
.../doris/nereids/glue/LogicalPlanAdapter.java | 11 +-
.../glue/translator/ExpressionTranslator.java | 1 +
.../nereids/load/NereidsLoadPlanInfoCollector.java | 84 +--
.../doris/nereids/load/NereidsLoadUtils.java | 48 ++
.../post/materialize/LazyMaterializeTopN.java | 11 +-
.../post/materialize/LazySlotPruning.java | 12 +-
.../org/apache/doris/nereids/rules/RuleType.java | 2 +
.../trees/plans/logical/LogicalAggregate.java | 2 +-
...calLoadProject.java => LogicalPostProject.java} | 100 +--
.../trees/plans/logical/LogicalSetOperation.java | 21 +-
.../nereids/trees/plans/visitor/PlanVisitor.java | 5 +
.../doris/nereids/util/TypeCoercionUtils.java | 12 +-
.../org/apache/doris/persist/gson/GsonUtils.java | 2 -
.../org/apache/doris/planner/OlapScanNode.java | 10 +-
.../java/org/apache/doris/qe/SessionVariable.java | 8 +
.../glue/translator/CountStarSmallestSlotTest.java | 6 +-
gensrc/thrift/PaloInternalService.thrift | 2 +
.../test_string_function_regexp.out | 56 +-
.../ann_index_p0/product_quantization.groovy | 2 +-
.../tvf/test_tvf_topn_lazy_mat.groovy | 4 +-
.../test_broker_load_strict_mode.groovy | 110 +++
.../test_string_function_regexp.groovy | 52 +-
86 files changed, 3786 insertions(+), 2537 deletions(-)
create mode 100644
be/src/olap/rowset/segment_v2/inverted_index/query_v2/nullable_scorer.h
create mode 100644
be/src/olap/rowset/segment_v2/inverted_index/query_v2/phrase_query/multi_phrase_query.h
create mode 100644
be/src/olap/rowset/segment_v2/inverted_index/query_v2/phrase_query/multi_phrase_weight.h
create mode 100644
be/src/olap/rowset/segment_v2/inverted_index/query_v2/postings/loaded_postings.cpp
copy be/src/olap/rowset/segment_v2/inverted_index/query_v2/{intersection.h =>
postings/loaded_postings.h} (51%)
create mode 100644
be/src/olap/rowset/segment_v2/inverted_index/query_v2/union/simple_union.cpp
copy be/src/olap/rowset/segment_v2/inverted_index/query_v2/{intersection.h =>
union/simple_union.h} (52%)
create mode 100644
be/test/olap/rowset/segment_v2/inverted_index/query_v2/loaded_postings_test.cpp
copy
be/test/olap/rowset/segment_v2/inverted_index/query_v2/{phrase_query_test.cpp
=> multi_phrase_query_test.cpp} (56%)
create mode 100644
be/test/olap/rowset/segment_v2/inverted_index/query_v2/simple_union_test.cpp
delete mode 100644
fe/fe-common/src/main/java/org/apache/doris/catalog/MultiRowType.java
delete mode 100644
fe/fe-core/src/main/java/org/apache/doris/catalog/FunctionTypeDeducers.java
copy
fe/fe-core/src/main/java/org/apache/doris/nereids/trees/plans/logical/{LogicalLoadProject.java
=> LogicalPostProject.java} (64%)
create mode 100644
regression-test/suites/load_p0/broker_load/test_broker_load_strict_mode.groovy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]