Github user mravi commented on a diff in the pull request: https://github.com/apache/incubator-phoenix/pull/22#discussion_r10860111 --- Diff: phoenix-pig/src/main/java/org/apache/phoenix/pig/hadoop/PhoenixRecord.java --- @@ -45,8 +49,13 @@ public class PhoenixRecord implements Writable { private final List<Object> values; + private List<? extends ColumnProjector> columnProjectors; private final ResourceFieldSchema[] fieldSchemas; + public PhoenixRecord() { + this(null); + } + public PhoenixRecord(ResourceFieldSchema[] fieldSchemas) { this.values = new ArrayList<Object>(); --- End diff -- Sure. Will do that.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---