Repository: phoenix Updated Branches: refs/heads/4.4-HBase-1.1 a7f132650 -> bd524246b
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/bd524246 Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/bd524246 Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/bd524246 Branch: refs/heads/4.4-HBase-1.1 Commit: bd524246bf415b01a3320c9260b6b9539eee25a2 Parents: c9dd4ce Author: Prashant Kommireddi <[email protected]> Authored: Mon Jun 15 16:18:47 2015 -0700 Committer: Eli Levine <[email protected]> Committed: Wed Jun 17 13:16:20 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/bd524246/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
