This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a change to branch branch-2.1
in repository https://gitbox.apache.org/repos/asf/doris.git
from 315f6e44c2f [Branch-2.1](Outfile) Fixed the problem that the
concurrent Outfile wrote multiple Success files (#33870)
new 5abc84af715 [fix](txn insert) Fix txn insert commit failed when schema
change (#33706)
new 56eb5ea00c5 [enhancement](partial-update) print more log while missed
some rowsets (#33711)
new 2675e94a938 [feature](variable) add read_only and super_read_only
(#33795)
new ffd9da44a2a [fix](move-memtable) fix commit may fail due to duplicated
reports (#32403)
new a8ba933947c [Fix](nereids) fix bind order by expression logic (#33843)
new 6776a3ad1b9 [Fix](planner) fix create view star except and modify cast
to sql (#33726)
new 1a6f8c443e3 [bugfix](paimon) Create paimon catalog with hadoop user
(#33833)
new 659900040f7 [Fix](inverted index) fix wrong need read data opt when
encounters columnA > columnB predicate (#33855)
new e38d844d403 [fix](multi-table-load) fix single stream multi table load
cannot finish (#33816)
new ad75b9b1427 [opt](auto bucket) add fe config autobucket_max_buckets
(#33842)
new 8b061c70551 [Enhancement](group commit) Add fault injection case for
group commit
new 175e85d616e [Bug](runtime-filter) fix coredump on no null string type
rf (#33869)
new f4704b38219 [improvement](storage) support glibc <2.21 for system call
eventfd (#33218)
new c747714c186 [fix](memory) Fix ExecEnv destroy memory tracking (#33781)
The 14 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/exprs/hybrid_set.h | 4 +-
be/src/glibc-compatibility/musl/eventfd.c | 8 +
be/src/io/fs/multi_table_pipe.cpp | 22 +-
be/src/io/fs/stream_load_pipe.cpp | 9 +
be/src/io/fs/stream_load_pipe.h | 4 +
be/src/olap/rowset/segment_v2/segment_iterator.cpp | 11 +-
be/src/olap/rowset/segment_v2/segment_writer.cpp | 15 +-
.../rowset/segment_v2/vertical_segment_writer.cpp | 15 +-
be/src/runtime/group_commit_mgr.cpp | 11 +-
be/src/runtime/memory/mem_tracker_limiter.h | 4 +-
be/src/runtime/thread_context.h | 13 +-
be/src/vec/sink/load_stream_stub.h | 12 +
be/src/vec/sink/writer/vtablet_writer_v2.cpp | 86 +-
be/src/vec/sink/writer/vtablet_writer_v2.h | 7 +
be/test/vec/sink/vtablet_writer_v2_test.cpp | 239 ++++++
.../java/org/apache/doris/catalog/ScalarType.java | 2 +-
.../main/java/org/apache/doris/common/Config.java | 8 +-
.../java/org/apache/doris/analysis/CastExpr.java | 2 +-
.../java/org/apache/doris/analysis/SelectStmt.java | 7 +-
.../apache/doris/common/util/AutoBucketUtils.java | 3 +-
.../datasource/paimon/PaimonExternalCatalog.java | 16 +-
.../nereids/rules/analysis/BindExpression.java | 4 +-
.../apache/doris/planner/StreamLoadPlanner.java | 4 +
.../java/org/apache/doris/qe/GlobalVariable.java | 14 +-
.../apache/doris/qe/InsertStreamTxnExecutor.java | 153 ++--
.../analysis/CreateTableAsSelectStmtTest.java | 4 +-
.../doris/planner/TableFunctionPlanTest.java | 2 +-
.../txn_insert_values_with_schema_change.out | 13 +
.../test_index_no_need_read_data.out | 74 ++
.../nereids_syntax_p0/order_by_bind_priority.out | 22 +
.../join/no_null_str_rf/no_null_str_rf.out | 4 +
.../data/variable_p0/set_and_unset_variable.out | 24 +
.../create_view_star_except_and_cast_to_sql.out | 11 +
.../suites/autobucket/test_autobucket.groovy | 33 +-
.../test_commit_info_fault_injection.groovy | 99 +++
...oup_commit_async_wal_msg_fault_injection.groovy | 40 +-
.../txn_insert_values_with_schema_change.groovy | 109 +++
.../test_index_no_need_read_data.groovy | 871 ++++++++++++++++++++-
.../order_by_bind_priority.groovy | 36 +
.../join/no_null_str_rf/no_null_str_rf.groovy | 58 ++
.../variable_p0/set_and_unset_variable.groovy | 22 +
.../create_view_star_except_and_cast_to_sql.groovy | 45 ++
42 files changed, 1976 insertions(+), 164 deletions(-)
create mode 100644 be/test/vec/sink/vtablet_writer_v2_test.cpp
create mode 100644
regression-test/data/insert_p0/txn_insert_values_with_schema_change.out
create mode 100644
regression-test/data/query_p0/join/no_null_str_rf/no_null_str_rf.out
create mode 100644
regression-test/data/view_p0/create_view_star_except_and_cast_to_sql.out
create mode 100644
regression-test/suites/fault_injection_p0/test_commit_info_fault_injection.groovy
create mode 100644
regression-test/suites/insert_p0/txn_insert_values_with_schema_change.groovy
create mode 100644
regression-test/suites/query_p0/join/no_null_str_rf/no_null_str_rf.groovy
create mode 100644
regression-test/suites/view_p0/create_view_star_except_and_cast_to_sql.groovy
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]