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
omit 8a3e1083769c chore(trino): advance trino master pin to 40b70400a8a6
add 1e59c9eb6d9e fix(core): record the ordering field when upgrading a
table from version 1 (#19803)
add c59987a024cd fix(variant): project PushVariantIntoScan struct paths in
the ... (#19783)
add ca28fdb9877e chore(trino): advance trino master pin to 40b70400a8a6
(#19807)
add a2788eef922e fix(spark-sql): resolve MERGE INTO partition columns so
records are not mis-partitioned (#19610)
new 41e5ecda8377 chore(trino): advance trino master pin to b61e98c9d9dc
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 (8a3e1083769c)
\
N -- N -- N refs/heads/bot/trino-pin (41e5ecda8377)
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:
.../hudi/table/upgrade/OneToTwoUpgradeHandler.java | 85 ++-
.../SparkFileFormatInternalRowReaderContext.scala | 63 ++-
.../datasources/SparkSchemaTransformUtils.scala | 13 +
.../org/apache/spark/sql/hudi/SparkAdapter.scala | 42 +-
.../table/upgrade/TestOneToTwoUpgradeHandler.java | 126 +++++
.../table/upgrade/TestUpgradeDowngradeLegacy.java | 98 ++++
.../org/apache/hudi/HoodieMergeOnReadRDDV2.scala | 19 +-
.../org/apache/hudi/cdc/CDCFileGroupIterator.scala | 12 +-
.../org/apache/hudi/TestHoodieSparkSqlWriter.scala | 55 ++
.../hudi/functional/TestStreamingSource.scala | 115 +++-
.../TestBaseSpark4AdapterVariantMethods.scala | 109 +++-
.../TestMergeIntoPartitionFieldResolution.scala | 622 +++++++++++++++++++++
.../sql/hudi/dml/others/TestMergeIntoTable2.scala | 8 +-
.../sql/hudi/dml/schema/TestVariantDataType.scala | 31 +-
.../schema/TestVariantShreddingMixedLayouts.scala | 530 +++++++++++++++++-
.../dml/schema/VariantShreddingTestSupport.scala | 121 +++-
.../hudi/command/MergeIntoHoodieTableCommand.scala | 120 +++-
.../spark/sql/adapter/BaseSpark4Adapter.scala | 94 +++-
.../hudi/command/MergeIntoHoodieTableCommand.scala | 120 +++-
.../apache/spark/sql/adapter/Spark4_1Adapter.scala | 48 +-
.../apache/spark/sql/adapter/Spark4_2Adapter.scala | 48 +-
pom.xml | 2 +-
22 files changed, 2217 insertions(+), 264 deletions(-)
create mode 100644
hudi-client/hudi-spark-client/src/test/java/org/apache/hudi/table/upgrade/TestOneToTwoUpgradeHandler.java
create mode 100644
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/spark/sql/hudi/dml/others/TestMergeIntoPartitionFieldResolution.scala