This is an automated email from the ASF dual-hosted git repository. morningman pushed a change to branch auto-pick-45285-branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
discard 6c0faab8abe [fix](iceberg)Fill in the detailed error information (#45285) add 667f5e6e6a8 [feat](iceberg)Supports using rest type catalog to read tables in unity catalog for 2.1 (#43525) (#45217) add 95ffc7a65fc branch-2.1: [fix](job)Fix millisecond offset issue in time window scheduling trigger time calculation #45176 (#45353) add 4d6d9a6c8c2 branch-2.1: [fix](persist) Fix TableAddOrDropInvertedIndicesInfo.equals #45335 (#45364) add 384a1a4bd70 [branch-2.1]log more detail when query hits policy (#44685) (#45366) add 6dabdd6a8ce branch-2.1: [fix](txn insert) txn insert show error url #45254 (#45381) add 249ffa44c05 branch-2.1 [Chore](dependencies)Upgrade Fe dependencies #44872 (#45362) add 99b7695841d [fix](iceberg)Fill in the detailed error information (#45285) 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 (6c0faab8abe) \ N -- N -- N refs/heads/auto-pick-45285-branch-2.1 (99b7695841d) 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/io/fs/file_system.cpp | 34 ++++++--- be/src/io/fs/file_system.h | 8 ++- be/src/io/fs/local_file_system.cpp | 82 +++++++++++++++++++--- be/src/io/fs/local_file_system.h | 6 ++ be/src/io/fs/remote_file_system.cpp | 10 ++- be/src/io/fs/s3_file_system.h | 7 +- .../runtime/stream_load/stream_load_executor.cpp | 9 ++- .../workload_management/workload_action.cpp | 2 +- .../workload_management/workload_condition.h | 20 ++++++ .../workload_management/workload_query_info.h | 3 +- .../workload_management/workload_sched_policy.cpp | 5 ++ be/src/vec/exec/format/parquet/schema_desc.cpp | 18 +++++ be/src/vec/exec/format/parquet/schema_desc.h | 7 ++ be/src/vec/exec/format/parquet/vparquet_reader.cpp | 6 +- be/src/vec/exec/format/parquet/vparquet_reader.h | 2 +- be/src/vec/exec/format/table/iceberg_reader.cpp | 48 ++++--------- be/src/vec/exec/format/table/iceberg_reader.h | 2 +- be/test/io/fs/local_file_system_test.cpp | 51 ++++++++++++++ .../org/apache/doris/common/util/TimeUtils.java | 11 +++ .../apache/doris/datasource/ExternalCatalog.java | 6 ++ .../doris/datasource/hive/HMSExternalCatalog.java | 20 ++++-- .../datasource/iceberg/IcebergExternalCatalog.java | 3 +- .../datasource/iceberg/IcebergMetadataCache.java | 14 ++-- .../datasource/iceberg/IcebergMetadataOps.java | 69 +++++++++++++----- .../iceberg/IcebergRestExternalCatalog.java | 2 - .../datasource/iceberg/IcebergTransaction.java | 3 +- .../operations/ExternalMetadataOperations.java | 4 +- .../datasource/operations/ExternalMetadataOps.java | 4 ++ .../doris/job/base/JobExecutionConfiguration.java | 2 +- .../org/apache/doris/job/base/TimerDefinition.java | 7 +- .../apache/doris/job/scheduler/JobScheduler.java | 13 ++-- .../java/org/apache/doris/persist/EditLog.java | 4 -- .../persist/TableAddOrDropInvertedIndicesInfo.java | 2 +- .../job/base/JobExecutionConfigurationTest.java | 7 ++ fe/pom.xml | 31 +++++--- .../iceberg/iceberg_read_unitycatalog_table.out | 40 +++++++++++ ...oovy => iceberg_read_unitycatalog_table.groovy} | 45 ++++++------ .../suites/insert_p0/transaction/txn_insert.groovy | 15 +++- 38 files changed, 462 insertions(+), 160 deletions(-) create mode 100644 regression-test/data/external_table_p0/iceberg/iceberg_read_unitycatalog_table.out copy regression-test/suites/external_table_p0/iceberg/{test_external_catalog_iceberg_common.groovy => iceberg_read_unitycatalog_table.groovy} (59%) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org