linliu-code commented on code in PR #17531:
URL: https://github.com/apache/hudi/pull/17531#discussion_r2771481875
##########
.github/workflows/bot.yml:
##########
@@ -686,6 +686,17 @@ jobs:
distribution: 'temurin'
architecture: x64
cache: maven
+ - name: Check disk space
Review Comment:
This should be gone after rebase.
##########
docker/compose/docker-compose_hadoop284_hive233_spark244.yml:
##########
@@ -175,7 +175,7 @@ services:
- "namenode"
zookeeper:
- image: 'bitnami/zookeeper:3.4.12-r68'
+ image: 'bitnamilegacy/zookeeper:3.4.12-r68'
Review Comment:
This should be gone after rebase.
##########
hudi-spark-datasource/hudi-spark3.2plus-common/src/main/scala/org/apache/spark/sql/hudi/analysis/HoodieSpark32PlusAnalysis.scala:
##########
@@ -111,7 +111,13 @@ case class HoodieSpark32PlusResolveReferences(spark:
SparkSession) extends Rule[
lazy val analyzer = spark.sessionState.analyzer
val targetTable = if (targetTableO.resolved) targetTableO else
analyzer.execute(targetTableO)
val sourceTable = if (sourceTableO.resolved) sourceTableO else
analyzer.execute(sourceTableO)
- val m = mO.asInstanceOf[MergeIntoTable].copy(targetTable = targetTable,
sourceTable = sourceTable)
+ val originalMergeInto = mO.asInstanceOf[MergeIntoTable]
+ val m = originalMergeInto.copy(
+ targetTable = targetTable,
+ sourceTable = sourceTable,
+ mergeCondition = originalMergeInto.mergeCondition,
+ matchedActions = originalMergeInto.matchedActions,
+ notMatchedActions = originalMergeInto.notMatchedActions)
Review Comment:
This should be gone after rebase.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]