Github user prashantkommireddi commented on a diff in the pull request:

    https://github.com/apache/incubator-phoenix/pull/22#discussion_r10854609
  
    --- Diff: 
phoenix-pig/src/main/java/org/apache/phoenix/pig/hadoop/PhoenixRecord.java ---
    @@ -77,6 +86,16 @@ public void write(PreparedStatement statement, 
List<ColumnInfo> columnMetadataLi
                statement.execute();
        }
        
    +   public void read(final Tuple row, final ImmutableBytesWritable ptr) 
throws SQLException {
    +       Preconditions.checkNotNull(this.columnProjectors);
    +       values.clear();
    +       for(ColumnProjector projector : columnProjectors){
    +           Object obj = projector.getValue(row, 
projector.getExpression().getDataType(), ptr);
    +           System.out.println(" in read of PhoenixRecord where the column 
name i s " + projector.getName());
    --- End diff --
    
    Probably you had this for debugging. Please remove it in the next patch


---
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.
---

Reply via email to