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

yiguolei pushed a change to branch auto-pick-59003-branch-4.0
in repository https://gitbox.apache.org/repos/asf/doris.git


 discard 8ed888dfe68 [fix](parser) Fix FROM DUAL incorrectly matching table 
names starting with dual (#59003)
     add 43f4cb862a4 branch-4.0: [fix](inverted index) fix incorrect variable 
usage in phrase query building #58952 (#58992)
     add 3b5f9b762d0 branch-4.0: [chore](ci) exclude test_insert_error_url to 
avoid stop grace fail #58985 (#58987)
     add 863f11b27ae Revert "[test](variable)add up and down test case of 
variables persistence" (#59038)
     add dd8d33da18b branch-4.0: [fix](ann search) 
l2_distance_approximate/inner_product_approximate should not be deterministic 
#58988 (#59001)
     add 3255d1798c5 branch-4.0: [fix](test) Fix output result for 
test_non_overlap_seg_heavy_sc #58805 (#59032)
     add 6518277ea76 branch-4.0: [fix](json) Replace invalid JSONB with default 
JSONB null value #59007 (#59022)
     add 63f3d2e6923 branch-4.0: [Fix](fe) Fix NPE in 
`OlapTableSink.createPaloNodesInfo` due to concurrent drop backend #58999 
(#59057)
     add 0c5f8e0a22d branch-4.0: [fix](close) Release resource once fragment 
was cancelled #58909 (#58971)
     add 900d828f0c0 branch-4.0: [fix](cloud)Not log stack information by Peer 
read #57816 (#58996)
     add 5b928352360 [fix](parser) Fix FROM DUAL incorrectly matching table 
names starting with dual (#59003)

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   (8ed888dfe68)
            \
             N -- N -- N   refs/heads/auto-pick-59003-branch-4.0 (5b928352360)

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/io/cache/cached_remote_file_reader.cpp      |   2 +-
 be/src/io/cache/peer_file_cache_reader.cpp         |  13 +-
 .../rowset/segment_v2/inverted_index_writer.cpp    |   2 +-
 be/src/pipeline/pipeline_fragment_context.cpp      |  10 +-
 be/src/util/jsonb_document.cpp                     |  38 +++
 be/src/util/jsonb_document.h                       |  25 --
 be/src/vec/functions/function_search.cpp           |   9 +-
 be/test/vec/jsonb/jsonb_document_test.cpp          |  15 ++
 .../functions/scalar/InnerProductApproximate.java  |   5 +
 .../functions/scalar/L2DistanceApproximate.java    |   5 +
 .../org/apache/doris/planner/OlapTableSink.java    |   3 +
 .../test_pinyin_phrase.out}                        |  18 +-
 .../test_non_overlap_seg_heavy_sc.out              |   2 +-
 .../data/variables_up_down_alias_function/load.out |  37 ---
 .../variables_up_down_test_alias_function.out      |  37 ---
 .../data/variables_up_down_decimalv3/load.out      |   9 -
 .../variables_up_down_test_decimalv3.out           |  17 --
 .../variables_up_down_generated_column/load.out    |  25 --
 .../variables_up_down_test_generated_column.out    |  49 ----
 .../data/variables_up_down_mtmv/load.out           |  13 --
 .../variables_up_down_test_mtmv.out                |  21 --
 .../variables_up_down_view_var_persist/load.out    |  95 --------
 .../variables_up_down_test_view_var_persist.out    |  95 --------
 .../nonConcurrent/conf/regression-conf.groovy      |   1 +
 .../inverted_index_p0/test_pinyin_phrase.groovy    |  73 ++++++
 .../variables_up_down_alias_function/load.groovy   | 106 ---------
 .../variables_up_down_test_alias_function.groovy   |  50 ----
 .../suites/variables_up_down_decimalv3/load.groovy |  31 ---
 .../variables_up_down_test_decimalv3.groovy        |  54 -----
 .../variables_up_down_generated_column/load.groovy | 172 --------------
 .../variables_up_down_test_generated_column.groovy |  61 -----
 .../suites/variables_up_down_mtmv/load.groovy      |  65 ------
 .../variables_up_down_test_mtmv.groovy             |  55 -----
 .../variables_up_down_view_var_persist/load.groovy | 258 ---------------------
 .../variables_up_down_test_view_var_persist.groovy |  95 --------
 35 files changed, 168 insertions(+), 1398 deletions(-)
 copy regression-test/data/{nereids_syntax_p0/utf8_id_test.out => 
inverted_index_p0/test_pinyin_phrase.out} (55%)
 delete mode 100644 
regression-test/data/variables_up_down_alias_function/load.out
 delete mode 100644 
regression-test/data/variables_up_down_alias_function/variables_up_down_test_alias_function.out
 delete mode 100644 regression-test/data/variables_up_down_decimalv3/load.out
 delete mode 100644 
regression-test/data/variables_up_down_decimalv3/variables_up_down_test_decimalv3.out
 delete mode 100644 
regression-test/data/variables_up_down_generated_column/load.out
 delete mode 100644 
regression-test/data/variables_up_down_generated_column/variables_up_down_test_generated_column.out
 delete mode 100644 regression-test/data/variables_up_down_mtmv/load.out
 delete mode 100644 
regression-test/data/variables_up_down_mtmv/variables_up_down_test_mtmv.out
 delete mode 100644 
regression-test/data/variables_up_down_view_var_persist/load.out
 delete mode 100644 
regression-test/data/variables_up_down_view_var_persist/variables_up_down_test_view_var_persist.out
 create mode 100644 
regression-test/suites/inverted_index_p0/test_pinyin_phrase.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_alias_function/load.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_alias_function/variables_up_down_test_alias_function.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_decimalv3/load.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_decimalv3/variables_up_down_test_decimalv3.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_generated_column/load.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_generated_column/variables_up_down_test_generated_column.groovy
 delete mode 100644 regression-test/suites/variables_up_down_mtmv/load.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_mtmv/variables_up_down_test_mtmv.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_view_var_persist/load.groovy
 delete mode 100644 
regression-test/suites/variables_up_down_view_var_persist/variables_up_down_test_view_var_persist.groovy


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

Reply via email to