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

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


 discard 1d9a908459b [Bug](bitmap-filter) fix wrong type cast on 
BitmapFilterColumnPredicate::evaluate (#43877)
     add 1101fbaf04a [fix](column_complex) wrong type of Field returned by 
ColumnComplex (#43515) (#43860)
     add d4712aed1a9 branch-2.1: [fix](string64) fix coredump caused by 
ColumnArray<ColumnStr<uint64_t>>::insert_indices_from (#43862)
     add 47f842b4d6a branch-2.1: [minor](rpc) Check client before RPC (#43818)
     add b4f0f6d8256 branch-2.1: [fix](planner)show tablet command return wrong 
result when having limit and offset (#43845)
     add b7071561691 branch-2.1: [Fix](multi-catalog)Fixed incorrect parameter 
transmission when obtaining files by hms partition and incorrect parameter 
transmission concurrently. #43767 (#43871)
     add 39b9b81d428 branch-2.1:[fix](build) Fix Mac compilation error caused 
by namespace conflict in find_symbols.h (#43868)
     add 59c8663abe7 [fix](nereids) convert stringLikeLiteral to double should 
use byte length (#43776) branch-2.1 (#43911)
     add 4531cd86e30 branch-2.1: [fix](regression-test) add checks for 
existence and successful upload of data files in hive-metastore.sh #43853 
(#43888)
     add 4f2a67251a8 [opt](fe) Optimize fe show table statistics (#35457) 
(#43858)
     add 26fef2a02ae branch-2.1: [Fix](UT) Fix status UT error introduced by 
#43731 #43922 (#43927)
     add 8554c06337d [opt](fe) Use `table.readLock` in `TabletStatMgr` for 
updating statistics (#39612) (#43937)
     add 7fc78e3f87e [opt](brpc) check and remove unavailable brpc stubs 
(#43212) (#43859)
     add 860fef6afdc [Bug](bitmap-filter) fix wrong type cast on 
BitmapFilterColumnPredicate::evaluate (#43877)

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   (1d9a908459b)
            \
             N -- N -- N   refs/heads/auto-pick-43877-branch-2.1 (860fef6afdc)

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/common/config.cpp                           |   5 +
 be/src/common/config.h                             |   4 +
 be/src/common/status.h                             |   1 +
 be/src/exec/es/es_scroll_parser.cpp                |   2 +-
 be/src/runtime/client_cache.h                      |   8 +-
 be/src/runtime/fragment_mgr.cpp                    |  68 ++++++++-
 be/src/runtime/fragment_mgr.h                      |   9 ++
 be/src/runtime/query_context.h                     |  23 +++
 be/src/vec/columns/column_array.cpp                |   3 +-
 be/src/vec/columns/column_complex.h                |   5 +-
 be/src/vec/columns/column_fixed_length_object.h    |  11 +-
 be/src/vec/columns/column_string.cpp               |  65 +++++----
 be/src/vec/columns/column_string.h                 |   4 +-
 be/src/vec/common/schema_util.cpp                  |   2 +-
 be/src/vec/core/field.cpp                          |   2 +-
 be/src/vec/core/field.h                            |  56 +-------
 .../vec/data_types/data_type_fixed_length_object.h |   2 +-
 be/src/vec/data_types/data_type_jsonb.h            |   2 +-
 be/src/vec/data_types/data_type_object.h           |   4 +-
 be/src/vec/data_types/data_type_string.cpp         |   2 +-
 be/src/vec/data_types/data_type_string.h           |   2 +-
 .../data_types/serde/data_type_object_serde.cpp    |   5 +-
 be/src/vec/functions/url/find_symbols.h            |  56 ++++----
 be/src/vec/json/parse2column.cpp                   |   2 +-
 be/src/vec/sink/vdata_stream_sender.cpp            |   9 ++
 .../index_compaction_with_deleted_term.cpp         |   4 +-
 .../aggregate_functions/agg_min_max_by_test.cpp    |   2 +-
 be/test/vec/columns/column_hash_func_test.cpp      |   2 +-
 be/test/vec/columns/column_nullable_test.h         |   2 +-
 be/test/vec/core/column_array_test.cpp             |  47 +++++++
 be/test/vec/core/column_complex_test.cpp           |  87 +++++++++++-
 be/test/vec/core/column_map_test.cpp               | 155 +++++++++++++++++++++
 be/test/vec/core/column_string_test.cpp            |  38 +++++
 be/test/vec/core/column_struct_test.cpp            |  79 +++++++++++
 .../serde/data_type_serde_arrow_test.cpp           |  14 +-
 .../data_types/serde/data_type_serde_pb_test.cpp   |   6 +-
 .../data_types/serde/data_type_to_string_test.cpp  |  10 +-
 .../vec/function/function_array_element_test.cpp   |   2 +-
 be/test/vec/function/function_array_index_test.cpp |   4 +-
 be/test/vec/function/function_array_size_test.cpp  |  12 +-
 .../vec/function/function_arrays_overlap_test.cpp  |   6 +-
 be/test/vec/function/function_string_test.cpp      |  10 +-
 be/test/vec/function/table_function_test.cpp       |   4 +-
 be/test/vec/jsonb/serialize_test.cpp               |   2 +-
 .../docker-compose/hive/scripts/hive-metastore.sh  |  24 ++++
 .../org/apache/doris/analysis/ShowDataStmt.java    |  13 +-
 .../java/org/apache/doris/catalog/Database.java    |  21 +--
 .../java/org/apache/doris/catalog/OlapTable.java   | 119 ++++++++++++----
 .../main/java/org/apache/doris/catalog/Table.java  |   9 ++
 .../org/apache/doris/catalog/TabletStatMgr.java    |  48 +++++--
 .../org/apache/doris/common/proc/DbsProcDir.java   |   2 +-
 .../doris/datasource/hive/source/HiveScanNode.java |   2 +-
 .../expressions/literal/StringLikeLiteral.java     |   5 +-
 .../java/org/apache/doris/qe/ShowExecutor.java     |  42 +++---
 .../literal/StringLikeLiteralTest.java}            |  22 ++-
 .../data/datatype_p0/complex_types/test_map.out    |   3 +
 regression-test/pipeline/p0/conf/be.conf           |   1 +
 regression-test/pipeline/p1/conf/be.conf           |   2 +
 .../datatype_p0/complex_types/test_map.groovy      |  35 +++++
 .../suites/show_p0/test_show_tablet.groovy         |  29 ++--
 60 files changed, 939 insertions(+), 276 deletions(-)
 create mode 100644 be/test/vec/core/column_map_test.cpp
 create mode 100644 be/test/vec/core/column_struct_test.cpp
 copy fe/fe-core/src/test/java/org/apache/doris/{common/CheckedMathTest.java => 
nereids/trees/expressions/literal/StringLikeLiteralTest.java} (62%)
 copy 
fe/fe-core/src/main/java/org/apache/doris/common/PatternMatcherWrapper.java => 
regression-test/suites/show_p0/test_show_tablet.groovy (59%)


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

Reply via email to