This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a change to branch auto-pick-67206-branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
discard b8c18de9a80 [fix](fe) Use service-specific Ranger select access types
(#67206)
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 8080085d0aa branch-4.1: [chore](thirdparty) upgrade thrift from 0.16.0
to 0.24.0 (#67356)
add 1509634aec7 [fix](fe) Use service-specific Ranger select access types
(#67206)
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 (b8c18de9a80)
\
N -- N -- N refs/heads/auto-pick-67206-branch-4.1 (1509634aec7)
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 | 29 +-
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 ---
be/src/service/doris_main.cpp | 2 +-
.../service/http/action/be_thread_stack_action.cpp | 2 +
be/src/util/thrift_util.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/FEOpExecutor.java | 1 +
.../org/apache/doris/qe/PointQueryExecutor.java | 2 +-
.../java/org/apache/doris/qe/ResultReceiver.java | 13 +-
.../java/org/apache/doris/qe/SessionVariable.java | 19 +-
.../cloud/catalog/CloudTabletRebalancerTest.java | 31 +
.../paimon/source/PaimonScanNodeTest.java | 8 +-
fe/pom.xml | 2 +-
fs_brokers/apache_hdfs_broker/pom.xml | 5 +-
gensrc/thrift/Makefile | 2 +-
gensrc/thrift/PaloInternalService.thrift | 2 +-
gensrc/thrift/PlanNodes.thrift | 1 +
regression-test/framework/pom.xml | 4 +-
.../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/CHANGELOG.md | 4 +
thirdparty/arrow-paimon-vars.sh | 410 -------------
thirdparty/build-thirdparty.sh | 161 ++---
thirdparty/download-thirdparty.sh | 80 +--
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 | 362 -----------
.../patches/thrift-0.16-fix_mutex_include.patch | 9 -
.../thrift-0.16-reset-consumed-message-size.patch | 29 -
thirdparty/test/arrow-paimon-lifecycle-test.sh | 492 ---------------
thirdparty/test/paimon-codec-dependency-test.sh | 78 ---
thirdparty/vars.sh | 33 +-
59 files changed, 300 insertions(+), 4439 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
delete mode 100644 thirdparty/patches/thrift-0.16-fix_mutex_include.patch
delete mode 100644
thirdparty/patches/thrift-0.16-reset-consumed-message-size.patch
delete mode 100755 thirdparty/test/arrow-paimon-lifecycle-test.sh
delete mode 100755 thirdparty/test/paimon-codec-dependency-test.sh
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]