This is an automated email from the ASF dual-hosted git repository.
github-actions[bot] pushed a change to branch bot/trino-pin
in repository https://gitbox.apache.org/repos/asf/hudi.git
discard 80b4d62a0b87 chore(trino): advance trino master pin to b2581fb32fcb
add 1d3a0affad87 fix(common): anchor a file group's first slice on a
committed log (#19785)
add b3dfb2a125f6 test(spark): reference disjoint blob ranges in Lance
out-of-line test (#19916)
add 15f361ce96e9 feat(metadata): support RLI and SI for parquet files
written outside Hudi (#19869)
new c4e82c073422 chore(trino): advance trino master pin to 1337928ee646
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 (80b4d62a0b87)
\
N -- N -- N refs/heads/bot/trino-pin (c4e82c073422)
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.
The 1 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:
.../metadata/HoodieBackedTableMetadataWriter.java | 18 +
.../SecondaryIndexRecordGenerationUtils.java | 157 ++++++--
.../partitionstats/PartitionStatsIndexer.java | 2 +-
.../metadata/index/record/BaseRecordIndexer.java | 107 +++++-
.../metadata/index/secondary/SecondaryIndexer.java | 13 +-
.../index/RecordBasedIndexingCatchupTask.java | 5 +-
.../index/WriteStatBasedIndexingCatchupTask.java | 5 +-
.../TestHoodieBackedTableMetadataWriter.java | 58 +++
.../TestSecondaryIndexRecordGenerationUtils.java | 91 ++++-
.../partitionstats/TestPartitionStatsIndexer.java | 12 +-
.../index/record/TestPartitionedRecordIndexer.java | 6 +-
.../metadata/index/record/TestRecordIndexer.java | 213 ++++++++++-
.../index/secondary/TestSecondaryIndexer.java | 66 ++++
.../action/index/TestIndexingCatchupTask.java | 36 +-
.../apache/hudi/common/model/HoodieFileGroup.java | 23 +-
.../hudi/common/model/WriteOperationType.java | 9 +
.../hudi/common/table/HoodieTableConfig.java | 10 +
.../table/view/AbstractTableFileSystemView.java | 3 +-
.../hudi/common/util/ExternalFilePathUtil.java | 39 +-
.../apache/hudi/common/util/FileFormatUtils.java | 48 +++
.../hudi/metadata/BaseFileRecordParsingUtils.java | 78 +++-
.../hudi/common/util/TestExternalFilePathUtil.java | 32 ++
.../metadata/TestBaseFileRecordParsingUtils.java | 50 +++
.../org/apache/hudi/common/util/ParquetUtils.java | 83 +++-
.../hudi/common/model/TestHoodieFileGroup.java | 92 ++++-
.../table/TestHoodieTableConfigMetaFieldsMode.java | 18 +
.../table/view/TestHoodieTableFileSystemView.java | 44 +++
.../apache/hudi/common/util/TestParquetUtils.java | 32 ++
.../hudi/GlobalRecordLevelIndexSupport.scala | 4 +-
.../hudi/PartitionedRecordLevelIndexSupport.scala | 5 +-
.../org/apache/hudi/RecordLevelIndexSupport.scala | 62 ++-
.../org/apache/hudi/SecondaryIndexSupport.scala | 29 +-
.../TestExternalFileRecordAndSecondaryIndex.java | 426 +++++++++++++++++++++
.../TestMetadataUtilRLIandSIRecordGeneration.java | 28 +-
.../TestGlobalRecordLevelIndexWithSQL.scala | 13 +-
.../hudi/functional/TestLanceDataSource.scala | 9 +-
pom.xml | 2 +-
37 files changed, 1770 insertions(+), 158 deletions(-)
create mode 100644
hudi-spark-datasource/hudi-spark/src/test/java/org/apache/hudi/client/functional/TestExternalFileRecordAndSecondaryIndex.java