You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@iceberg.apache.org by bl...@apache.org on 2022/07/26 16:42:45 UTC

[iceberg] branch master updated: Spark 3.3: Fix typo (#5354)

This is an automated email from the ASF dual-hosted git repository.

blue pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 39878c629a Spark 3.3: Fix typo (#5354)
39878c629a is described below

commit 39878c629a6738b0fc99987ccb80da4511525bdc
Author: 20100507 <11...@qq.com>
AuthorDate: Wed Jul 27 00:42:40 2022 +0800

    Spark 3.3: Fix typo (#5354)
---
 .../spark/src/main/java/org/apache/iceberg/spark/SparkTableUtil.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/spark/v3.3/spark/src/main/java/org/apache/iceberg/spark/SparkTableUtil.java b/spark/v3.3/spark/src/main/java/org/apache/iceberg/spark/SparkTableUtil.java
index 2fedb4c74a..2928d66644 100644
--- a/spark/v3.3/spark/src/main/java/org/apache/iceberg/spark/SparkTableUtil.java
+++ b/spark/v3.3/spark/src/main/java/org/apache/iceberg/spark/SparkTableUtil.java
@@ -106,7 +106,7 @@ public class SparkTableUtil {
 
   private static final String DUPLICATE_FILE_MESSAGE = "Cannot complete import because data files " +
       "to be imported already exist within the target table: %s.  " +
-      "This is disabled by default as Iceberg is not designed for mulitple references to the same file" +
+      "This is disabled by default as Iceberg is not designed for multiple references to the same file" +
       " within the same table.  If you are sure, you may set 'check_duplicate_files' to false to force the import.";