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

    https://github.com/apache/incubator-flink/pull/172#discussion_r19725808
  
    --- Diff: 
flink-addons/flink-hbase/src/main/java/org/apache/flink/addons/hbase/common/HBaseResult.java
 ---
    @@ -59,11 +64,18 @@ public String getStringData() {
        
        @Override
        public void read(DataInputView in) throws IOException {
    -           this.result.readFields(in);
    +           Deserializer<Result> deser = new 
ResultSerialization().getDeserializer(Result.class);
    +           deser.open(new DataInputViewStream(in));
    +           result = deser.deserialize(null);
    +           deser.close();
        }
        
        @Override
        public void write(DataOutputView out) throws IOException {
    -           this.result.write(out); 
    +           Serializer<Result> ser = new 
ResultSerialization().getSerializer(Result.class);
    --- End diff --
    
    Same here.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to