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

    https://github.com/apache/tajo/pull/381#discussion_r24563379
  
    --- Diff: 
tajo-core/src/main/java/org/apache/tajo/engine/planner/physical/HashLeftOuterJoinExec.java
 ---
    @@ -211,12 +169,16 @@ protected void loadRightToHashTable() throws 
IOException {
           }
     
           List<Tuple> newValue = tupleSlots.get(keyTuple);
    -      if (newValue != null) {
    -        newValue.add(tuple);
    -      } else {
    -        newValue = new ArrayList<Tuple>();
    -        newValue.add(tuple);
    -        tupleSlots.put(keyTuple, newValue);
    +      try {
    +        if (newValue != null) {
    +          newValue.add(tuple.clone());
    --- End diff --
    
    This problem is quite complicated. So, I create a new issue 
(https://issues.apache.org/jira/browse/TAJO-1343) to handle this problem.
    Please review the 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 [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to