Repository: phoenix Updated Branches: refs/heads/4.4-HBase-1.0 daad66ce6 -> c8ae7aa0c
minor changes based on jesses feedback Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/c8ae7aa0 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/c8ae7aa0 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/c8ae7aa0 Branch: refs/heads/4.4-HBase-1.0 Commit: c8ae7aa0ca0fb6fdcc31c740605fa857f13c6a2b Parents: 95e3071 Author: Prashant Kommireddi <[email protected]> Authored: Mon Jun 15 16:18:47 2015 -0700 Committer: Eli Levine <[email protected]> Committed: Wed Jun 17 13:13:15 2015 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/phoenix/pig/util/TypeUtil.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/phoenix/blob/c8ae7aa0/phoenix-pig/src/main/java/org/apache/phoenix/pig/util/TypeUtil.java ---------------------------------------------------------------------- diff --git a/phoenix-pig/src/main/java/org/apache/phoenix/pig/util/TypeUtil.java b/phoenix-pig/src/main/java/org/apache/phoenix/pig/util/TypeUtil.java index 6e32fb5..5820ec6 100644 --- a/phoenix-pig/src/main/java/org/apache/phoenix/pig/util/TypeUtil.java +++ b/phoenix-pig/src/main/java/org/apache/phoenix/pig/util/TypeUtil.java @@ -76,9 +76,7 @@ public final class TypeUtil { private TypeUtil() {} /** - * A map of Phoenix to Pig data types. - * - * @return + * @return map of Phoenix to Pig data types. */ private static ImmutableMap<PDataType, Byte> init() { final ImmutableMap.Builder<PDataType, Byte> builder = new Builder<PDataType, Byte>(); @@ -160,7 +158,8 @@ public final class TypeUtil { /** * This method encodes a value with Phoenix data type. It begins with checking whether an object is BINARY and makes - * a call to {@link #castBytes(Object, PDataType)} to convery bytes to targetPhoenixType + * a call to {@link #castBytes(Object, PDataType)} to convert bytes to targetPhoenixType. It returns a {@link RuntimeException} + * when object can not be coerced. * * @param o * @param targetPhoenixType
