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 2019/07/24 19:00:18 UTC

[incubator-iceberg] branch master updated: Fix typo in error message for day transform (#306)

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/incubator-iceberg.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ef8695  Fix typo in error message for day transform (#306)
9ef8695 is described below

commit 9ef8695af2a431d8ed87d4d5a9419b05287d67f2
Author: David Phillips <da...@acz.org>
AuthorDate: Wed Jul 24 12:00:13 2019 -0700

    Fix typo in error message for day transform (#306)
---
 api/src/main/java/org/apache/iceberg/transforms/Transforms.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/api/src/main/java/org/apache/iceberg/transforms/Transforms.java b/api/src/main/java/org/apache/iceberg/transforms/Transforms.java
index d94b410..ff1eb32 100644
--- a/api/src/main/java/org/apache/iceberg/transforms/Transforms.java
+++ b/api/src/main/java/org/apache/iceberg/transforms/Transforms.java
@@ -131,7 +131,7 @@ public class Transforms {
         return (Transform<T, Integer>) Timestamps.DAY;
       default:
         throw new IllegalArgumentException(
-            "Cannot partition type " + type + " by month");
+            "Cannot partition type " + type + " by day");
     }
   }