This is an automated email from the ASF dual-hosted git repository.
lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git
The following commit(s) were added to refs/heads/master by this push:
new fd9ec6135f [hotfix] Fix typo in MergeIntoPaimonTable (#6381)
fd9ec6135f is described below
commit fd9ec6135f1088f1c5a178c64ebf433e938b3aff
Author: Zouxxyy <[email protected]>
AuthorDate: Sat Oct 11 15:47:13 2025 +0800
[hotfix] Fix typo in MergeIntoPaimonTable (#6381)
---
.../scala/org/apache/paimon/spark/commands/MergeIntoPaimonTable.scala | 2 +-
.../test/scala/org/apache/paimon/spark/sql/MergeIntoTableTestBase.scala | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git
a/paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/commands/MergeIntoPaimonTable.scala
b/paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/commands/MergeIntoPaimonTable.scala
index 1ae894dbae..d956a9472f 100644
---
a/paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/commands/MergeIntoPaimonTable.scala
+++
b/paimon-spark/paimon-spark-common/src/main/scala/org/apache/paimon/spark/commands/MergeIntoPaimonTable.scala
@@ -326,7 +326,7 @@ case class MergeIntoPaimonTable(
if (count > 0) {
throw new RuntimeException(
"Can't execute this MergeInto when there are some target rows that
each of " +
- "them match more then one source rows. It may lead to an
unexpected result.")
+ "them match more than one source rows. It may lead to an
unexpected result.")
}
}
}
diff --git
a/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/sql/MergeIntoTableTestBase.scala
b/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/sql/MergeIntoTableTestBase.scala
index 0beadce6a3..ee4799f56c 100644
---
a/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/sql/MergeIntoTableTestBase.scala
+++
b/paimon-spark/paimon-spark-ut/src/test/scala/org/apache/paimon/spark/sql/MergeIntoTableTestBase.scala
@@ -539,7 +539,7 @@ abstract class MergeIntoTableTestBase extends
PaimonSparkTestBase with PaimonTab
|THEN INSERT (a, b, c) values (a, b, c)
|""".stripMargin)
}.getMessage
- assert(error.contains("match more then one source rows"))
+ assert(error.contains("match more than one source rows"))
}
}