Repository: incubator-hawq Updated Branches: refs/heads/HAWQ-683 07005fa1f -> eb0450aef
HAWQ-683. Fix AvroResolver doc Project: http://git-wip-us.apache.org/repos/asf/incubator-hawq/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-hawq/commit/eb0450ae Tree: http://git-wip-us.apache.org/repos/asf/incubator-hawq/tree/eb0450ae Diff: http://git-wip-us.apache.org/repos/asf/incubator-hawq/diff/eb0450ae Branch: refs/heads/HAWQ-683 Commit: eb0450aefa2e8a4a9110f13840e5277b8c54595e Parents: 07005fa Author: Shivram Mani <[email protected]> Authored: Tue Apr 19 14:37:56 2016 -0700 Committer: Shivram Mani <[email protected]> Committed: Tue Apr 19 14:37:56 2016 -0700 ---------------------------------------------------------------------- .../main/java/org/apache/hawq/pxf/plugins/hdfs/AvroResolver.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-hawq/blob/eb0450ae/pxf/pxf-hdfs/src/main/java/org/apache/hawq/pxf/plugins/hdfs/AvroResolver.java ---------------------------------------------------------------------- diff --git a/pxf/pxf-hdfs/src/main/java/org/apache/hawq/pxf/plugins/hdfs/AvroResolver.java b/pxf/pxf-hdfs/src/main/java/org/apache/hawq/pxf/plugins/hdfs/AvroResolver.java index 00ef830..229fdcd 100644 --- a/pxf/pxf-hdfs/src/main/java/org/apache/hawq/pxf/plugins/hdfs/AvroResolver.java +++ b/pxf/pxf-hdfs/src/main/java/org/apache/hawq/pxf/plugins/hdfs/AvroResolver.java @@ -152,7 +152,7 @@ public class AvroResolver extends Plugin implements ReadResolver { * The record can arrive from one out of two different sources: a sequence * file or an AVRO file. If it comes from an AVRO file, then it was already * obtained as a {@link GenericRecord} when when it was fetched from the - * file with the {@link AvroRecorReader} so in this case a cast is enough. + * file so in this case a cast is enough. * On the other hand, if the source is a sequence file, then the input * parameter obj hides a bytes [] buffer which is in fact one Avro record * serialized. Here, we build the Avro record from the flat buffer, using
