This is an automated email from the ASF dual-hosted git repository.
kxiao pushed a change to branch branch-2.0
in repository https://gitbox.apache.org/repos/asf/doris.git
from ae9d17623f [Improve](metadata)Start the script to set
metadata_failure_recovery (#24308)
new 7c49ef1a92 [fix](env)mock env.isCheckpointThread #24280
new 192cb8a012 [fix](invert index) fix query use char filter (#24268)
new 0801b89b0b [enhancement](fe) Add more detail log for replayJournal
(#24218)
new a18b67fe0d [Improve](serde)replace function_cast from_string to serde
(#24087)
The 4 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:
be/src/olap/inverted_index_parser.h | 4 +-
.../rowset/segment_v2/inverted_index_reader.cpp | 14 +-
be/src/vec/data_types/data_type_struct.cpp | 72 +-
be/src/vec/data_types/data_type_struct.h | 2 +-
.../vec/data_types/serde/data_type_array_serde.cpp | 5 +
.../data_types/serde/data_type_bitmap_serde.cpp | 19 +
.../vec/data_types/serde/data_type_bitmap_serde.h | 10 +-
.../vec/data_types/serde/data_type_map_serde.cpp | 9 +
.../data_types/serde/data_type_nullable_serde.cpp | 8 +-
.../data_types/serde/data_type_struct_serde.cpp | 144 +
.../vec/data_types/serde/data_type_struct_serde.h | 86 +-
be/src/vec/exprs/vmatch_predicate.cpp | 1 +
be/src/vec/functions/function_cast.h | 10 +-
be/src/vec/functions/function_tokenize.cpp | 2 +
.../data_types/serde/data_type_serde_text_test.cpp | 45 +-
.../apache/doris/analysis/InvertedIndexUtil.java | 42 +
.../org/apache/doris/analysis/MatchPredicate.java | 11 +-
.../main/java/org/apache/doris/catalog/Env.java | 10 +
.../main/java/org/apache/doris/catalog/Index.java | 4 +
.../org/apache/doris/journal/JournalEntity.java | 9 +
.../doris/journal/bdbje/BDBJournalCursor.java | 1 +
.../glue/translator/ExpressionTranslator.java | 7 +-
.../org/apache/doris/analysis/AccessTestUtil.java | 4 +
gensrc/thrift/Exprs.thrift | 1 +
.../char_filter/test_char_replace.out | 54 +
.../data/json_p0/test_json_load_and_function.out | 430 +-
.../test_json_load_unique_key_and_function.out | 366 +-
.../data/jsonb_p0/test_jsonb_load_and_function.out | 578 +-
.../test_jsonb_load_unique_key_and_function.out | 504 +-
.../load/insert/test_array_insert_into_select.out | 6 +-
.../data/load_p0/broker_load/test_array_load.out | 6 +-
.../test_load_with_map_nested_array.out | 1003 ++
.../stream_load/test_map_load_and_function.out | 304 +-
.../load_p0/stream_load/test_map_nested_array.csv | 1000 ++
.../data/nereids_function_p0/agg_function/agg.out | 346 +-
.../data/nereids_function_p0/scalar_function/A.out | 52 +-
.../nereids_function_p0/scalar_function/Array.out | 9716 ++++++++++++++++++++
.../data/nereids_function_p0/scalar_function/B.out | 4 +-
.../data/nereids_function_p0/scalar_function/C.out | 62 +-
.../data/nereids_function_p0/scalar_function/D.out | 4 +-
.../data/nereids_function_p0/scalar_function/E.out | 6 +-
.../data/nereids_function_p0/scalar_function/F.out | 8 +-
.../data/nereids_function_p0/scalar_function/G.out | 52 +-
.../data/nereids_function_p0/scalar_function/H.out | 4 +-
.../data/nereids_function_p0/scalar_function/I.out | 6 +-
.../data/nereids_function_p0/scalar_function/L.out | 68 +-
.../data/nereids_function_p0/scalar_function/M.out | 144 +-
.../data/nereids_function_p0/scalar_function/N.out | 108 +-
.../data/nereids_function_p0/scalar_function/P.out | 50 +-
.../data/nereids_function_p0/scalar_function/R.out | 24 +-
.../data/nereids_function_p0/scalar_function/S.out | 20 +-
.../data/nereids_function_p0/scalar_function/T.out | 6 +-
.../data/nereids_function_p0/scalar_function/U.out | 12 +-
.../window_function/window_fn.out | 625 +-
.../nereids_p0/insert_into_table/aggregate.out | 14 +-
.../nereids_p0/insert_into_table/duplicate.out | 26 +-
.../nereids_p0/insert_into_table/no_partition.out | 48 +-
.../data/nereids_p0/insert_into_table/unique.out | 28 +-
.../test_array_functions_with_where.out | 6 +-
.../cast_function/test_cast_string_to_array.out | 18 +-
.../char_filter/test_char_replace.groovy | 27 +-
.../test_load_with_map_nested_array.groovy} | 59 +-
62 files changed, 13950 insertions(+), 2364 deletions(-)
create mode 100644
regression-test/data/load_p0/stream_load/test_load_with_map_nested_array.out
create mode 100644
regression-test/data/load_p0/stream_load/test_map_nested_array.csv
create mode 100644
regression-test/data/nereids_function_p0/scalar_function/Array.out
copy
regression-test/suites/{data_model_p0/unique/test_sequence_multi_same_key.groovy
=> load_p0/stream_load/test_load_with_map_nested_array.groovy} (53%)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]