This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a change to branch auto-pick-67351-branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
omit 752c61b76d4 [fix](cloud) Exclude stale rowsets from schema change
temporary tablet (#67351)
add ea30267ac6f branch-4.1: [fix](thirdparty) order Paimon codec
dependencies #67158 (#67357)
add 57636cae98b branch-4.1: [chore](paimon) remove paimon-cpp dependency
(#67378)
add e5ae5ab9d04 [enhancement](thirdparty) fix arrow build bug and clear
dangerous env (#67523)
add d2436590272 [improvement](fe) Reuse boxed IDs in cloud tablet indexes
(#66389) (#67278)
add 9bb77b26e64 [fix](cloud) Exclude stale rowsets from schema change
temporary tablet (#67351)
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 (752c61b76d4)
\
N -- N -- N refs/heads/auto-pick-67351-branch-4.1 (9bb77b26e64)
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:
.github/workflows/build-thirdparty.yml | 31 +-
be/CMakeLists.txt | 50 --
be/cmake/thirdparty.cmake | 15 -
be/src/common/config.cpp | 35 --
be/src/common/config.h | 3 -
be/src/exec/scan/file_scanner.cpp | 24 +-
be/src/exec/scan/file_scanner_v2.cpp | 8 +-
be/src/format/table/paimon_cpp_reader.cpp | 342 -----------
be/src/format/table/paimon_cpp_reader.h | 95 ---
be/src/format/table/paimon_doris_file_system.cpp | 679 ---------------------
be/src/format/table/paimon_doris_file_system.h | 36 --
be/src/format/table/paimon_predicate_converter.cpp | 659 --------------------
be/src/format/table/paimon_predicate_converter.h | 90 ---
.../service/http/action/be_thread_stack_action.cpp | 2 +
be/test/exec/scan/file_scanner_v2_test.cpp | 18 -
be/test/format/table/paimon_cpp_reader_test.cpp | 96 ---
.../format/table/paimon_doris_file_system_test.cpp | 59 --
build.sh | 59 +-
.../doris/cloud/catalog/CloudTabletRebalancer.java | 22 +-
.../apache/doris/datasource/paimon/PaimonUtil.java | 19 -
.../datasource/paimon/source/PaimonScanNode.java | 3 +-
.../java/org/apache/doris/qe/SessionVariable.java | 19 +-
.../cloud/catalog/CloudTabletRebalancerTest.java | 31 +
.../paimon/source/PaimonScanNodeTest.java | 8 +-
gensrc/thrift/PaloInternalService.thrift | 2 +-
gensrc/thrift/PlanNodes.thrift | 1 +
regression-test/pipeline/external/conf/fe.conf | 3 +-
.../PAIMON_ICEBERG_READ_WRITE_P0_COVERAGE.md | 2 +-
.../paimon/paimon_data_system_table.groovy | 2 -
.../test_paimon_partition_pk_delete_refs.groovy | 3 -
...test_paimon_partition_schema_filter_refs.groovy | 3 -
...der.groovy => test_paimon_reader_parity.groovy} | 19 +-
.../test_paimon_schema_time_travel_matrix.groovy | 30 +-
run-be-ut.sh | 25 -
thirdparty/AGENTS.md | 67 ++
thirdparty/arrow-paimon-vars.sh | 408 -------------
thirdparty/build-thirdparty.sh | 151 ++---
thirdparty/download-thirdparty.sh | 64 +-
thirdparty/paimon-cpp-cache.cmake | 137 -----
...arrow-24.0.0-force-write-int96-timestamps.patch | 5 +-
thirdparty/patches/apache-arrow-24.0.0-lzo.patch | 17 +
.../patches/apache-arrow-24.0.0-paimon.patch | 226 -------
.../paimon-cpp-arrow-24-compatibility.patch | 64 --
.../patches/paimon-cpp-arrow-24-compute.patch | 44 --
.../paimon-cpp-buildutils-static-deps.patch | 345 -----------
.../test/adbc-jni-config-test.sh | 23 +-
thirdparty/test/arrow-paimon-lifecycle-test.sh | 492 ---------------
thirdparty/vars.sh | 25 +-
48 files changed, 282 insertions(+), 4279 deletions(-)
delete mode 100644 be/src/format/table/paimon_cpp_reader.cpp
delete mode 100644 be/src/format/table/paimon_cpp_reader.h
delete mode 100644 be/src/format/table/paimon_doris_file_system.cpp
delete mode 100644 be/src/format/table/paimon_doris_file_system.h
delete mode 100644 be/src/format/table/paimon_predicate_converter.cpp
delete mode 100644 be/src/format/table/paimon_predicate_converter.h
delete mode 100644 be/test/format/table/paimon_cpp_reader_test.cpp
delete mode 100644 be/test/format/table/paimon_doris_file_system_test.cpp
rename
regression-test/suites/external_table_p0/paimon/{test_paimon_cpp_reader.groovy
=> test_paimon_reader_parity.groovy} (81%)
create mode 100644 thirdparty/AGENTS.md
delete mode 100644 thirdparty/arrow-paimon-vars.sh
delete mode 100644 thirdparty/paimon-cpp-cache.cmake
delete mode 100644 thirdparty/patches/apache-arrow-24.0.0-paimon.patch
delete mode 100644 thirdparty/patches/paimon-cpp-arrow-24-compatibility.patch
delete mode 100644 thirdparty/patches/paimon-cpp-arrow-24-compute.patch
delete mode 100644 thirdparty/patches/paimon-cpp-buildutils-static-deps.patch
copy docker/thirdparties/docker-compose/kerberos/health-checks/health.sh =>
thirdparty/test/adbc-jni-config-test.sh (50%)
delete mode 100755 thirdparty/test/arrow-paimon-lifecycle-test.sh
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]