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 602d627dccc4 chore(trino): advance trino master pin to b759085d4844
add 9903b6d83fbb feat(flink): support record index handling in dynamic
bucket assign function (#19837)
add 73e6872fedd6 refactor(spark): collapse HoodieTableState (#19849)
add cebbd6a0d564 fix(spark): widen procedure filter numeric comparisons
(#19836)
add 6c666ee57985 [HUDI-736] Simplify
ReflectionUtils#getTopLevelClassesInClasspath (#19784)
add d9e6f42045cd feat(flink): support vector columns in Lance reader
(#19842)
new 8b0c6e133023 chore(trino): advance trino master pin to 6bd5ce831939
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 (602d627dccc4)
\
N -- N -- N refs/heads/bot/trino-pin (8b0c6e133023)
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:
.../row/lance/HoodieFlinkLanceArrowUtils.java | 22 +-
.../apache/hudi/util/HoodieSchemaConverter.java | 18 +-
.../org/apache/hudi/util/VectorColumnParser.java | 14 +-
.../apache/hudi/util/VectorConversionUtils.java | 9 +-
.../hudi/util/TestHoodieSchemaConverter.java | 16 ++
.../hudi/util/TestVectorConversionUtils.java | 14 +-
.../hudi/core/read/BaseHoodieTableFileIndex.java | 1 -
.../hudi/common/util/TestReflectionUtils.java | 44 +++
.../core/read/BaseHoodieTableFileIndexTest.java | 30 --
.../partitioner/DynamicBucketAssignFunction.java | 10 +
.../index/DummyPartitionedIndexBackend.java | 5 +
.../partitioner/index/PartitionedIndexBackend.java | 14 +
.../partitioner/index/RecordLevelIndexBackend.java | 24 ++
.../org/apache/hudi/table/format/FormatUtils.java | 15 +-
.../table/format/HoodieRowDataLanceReader.java | 78 ++++-
.../table/format/cow/CopyOnWriteInputFormat.java | 20 +-
.../TestDynamicBucketAssignFunction.java | 108 +++++++
.../sink/partitioner/index/TestIndexBackends.java | 3 +
.../index/TestRecordLevelIndexBackend.java | 42 +++
.../apache/hudi/table/ITTestVectorDataSource.java | 60 ++++
.../table/format/TestHoodieRowDataLanceReader.java | 229 ++++++++++++++-
.../format/cow/TestCopyOnWriteInputFormat.java | 63 ++++
.../index/TestBaseHoodieTableFileIndex.java | 64 ++++-
.../apache/hudi/common/util/ReflectionUtils.java | 36 +--
.../scala/org/apache/hudi/HoodieBaseRelation.scala | 35 +--
.../org/apache/hudi/HoodieMergeOnReadRDDV2.scala | 14 +-
.../hudi/MergeOnReadIncrementalRelationV1.scala | 2 +-
.../hudi/MergeOnReadIncrementalRelationV2.scala | 2 +-
.../apache/hudi/MergeOnReadSnapshotRelation.scala | 12 +-
.../procedures/HoodieProcedureFilterUtils.scala | 259 +++++++++++++++--
.../sql/hudi/procedure/TestFsViewProcedure.scala | 21 ++
.../procedure/TestHoodieProcedureFilterUtils.scala | 320 ++++++++++++++++++---
.../sql/hudi/procedure/TestMetadataProcedure.scala | 15 +
pom.xml | 2 +-
34 files changed, 1425 insertions(+), 196 deletions(-)