This is an automated email from the ASF dual-hosted git repository. github-bot pushed a change to branch auto-pick-44726-branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
from 1ba9b85863f branch-3.0: [fix](nereids)EliminateGroupBy rule should keep output's datatype unchanged #45359 (#45398) add 564b3b67cad [feature](mtmv)Support iceberg partition refresh. (#44726) No new revisions were added by this update. Summary of changes: .../apache/doris/catalog/RangePartitionItem.java | 7 +- .../datasource/iceberg/IcebergExternalTable.java | 439 ++++++++++++++++++++- .../doris/datasource/iceberg/IcebergPartition.java | 82 ++++ .../datasource/iceberg/IcebergPartitionInfo.java | 71 ++++ .../IcebergSchemaCacheValue.java} | 23 +- .../apache/doris/job/extensions/mtmv/MTMVTask.java | 7 + .../org/apache/doris/mtmv/MTMVPartitionUtil.java | 2 +- .../org/apache/doris/mtmv/MTMVRelatedTableIf.java | 9 + .../iceberg/IcebergExternalTableTest.java | 238 +++++++++++ .../iceberg/IcebergPartitionInfoTest.java | 53 +++ regression-test/data/mtmv_p0/test_iceberg_mtmv.out | 98 +++++ .../suites/mtmv_p0/test_iceberg_mtmv.groovy | 147 +++++++ 12 files changed, 1164 insertions(+), 12 deletions(-) create mode 100644 fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergPartition.java create mode 100644 fe/fe-core/src/main/java/org/apache/doris/datasource/iceberg/IcebergPartitionInfo.java copy fe/fe-core/src/main/java/org/apache/doris/datasource/{hive/HMSSchemaCacheValue.java => iceberg/IcebergSchemaCacheValue.java} (62%) create mode 100644 fe/fe-core/src/test/java/org/apache/doris/datasource/iceberg/IcebergExternalTableTest.java create mode 100644 fe/fe-core/src/test/java/org/apache/doris/datasource/iceberg/IcebergPartitionInfoTest.java --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org