From a91296f14a037a148d949b2380ad503677e688c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=A3=E5=8F=AF=E4=BC=A6?= <1412359494@qq.com> Date: Sun, 25 Jul 2021 12:15:57 +0800 Subject: [PATCH] [HUDI-2216] Correct the words fiels in the comments to fields (#3339) --- .../spark/sql/hudi/command/MergeIntoHoodieTableCommand.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/MergeIntoHoodieTableCommand.scala b/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/MergeIntoHoodieTableCommand.scala index df8688562..d2c6905af 100644 --- a/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/MergeIntoHoodieTableCommand.scala +++ b/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/MergeIntoHoodieTableCommand.scala @@ -260,7 +260,7 @@ case class MergeIntoHoodieTableCommand(mergeInto: MergeIntoTable) extends Runnab writeParams += (PAYLOAD_INSERT_CONDITION_AND_ASSIGNMENTS -> serializedInsertConditionAndExpressions(insertActions)) - // Remove the meta fiels from the sourceDF as we do not need these when writing. + // Remove the meta fields from the sourceDF as we do not need these when writing. val sourceDFWithoutMetaFields = removeMetaFields(sourceDF) HoodieSparkSqlWriter.write(sparkSession.sqlContext, SaveMode.Append, writeParams, sourceDFWithoutMetaFields) } @@ -281,7 +281,7 @@ case class MergeIntoHoodieTableCommand(mergeInto: MergeIntoTable) extends Runnab writeParams += (PAYLOAD_INSERT_CONDITION_AND_ASSIGNMENTS -> serializedInsertConditionAndExpressions(insertActions)) - // Remove the meta fiels from the sourceDF as we do not need these when writing. + // Remove the meta fields from the sourceDF as we do not need these when writing. val sourceDFWithoutMetaFields = removeMetaFields(sourceDF) HoodieSparkSqlWriter.write(sparkSession.sqlContext, SaveMode.Append, writeParams, sourceDFWithoutMetaFields) }