Github user hyunsik commented on the pull request:

    https://github.com/apache/tajo/pull/28#issuecomment-46937502
  
    I did the follows:
    * I've rebased the patch against the latest source code.
    * I've fixed unit test failures by adding some workaround code as follows:
    ```
      @AfterClass
      public static void tearDown() {
        testingCluster.setAllTajoDaemonConfValue(
            ConfVars.EXECUTOR_INNER_JOIN_INMEMORY_HASH_THRESHOLD.varname,
            
String.valueOf(ConfVars.EXECUTOR_INNER_JOIN_INMEMORY_HASH_THRESHOLD.defaultLongVal));
        
testingCluster.setAllTajoDaemonConfValue(ConfVars.EXECUTOR_OUTER_JOIN_INMEMORY_HASH_THRESHOLD.varname,
            
String.valueOf(ConfVars.EXECUTOR_OUTER_JOIN_INMEMORY_HASH_THRESHOLD.defaultLongVal));
        
testingCluster.setAllTajoDaemonConfValue(ConfVars.EXECUTOR_GROUPBY_INMEMORY_HASH_THRESHOLD.varname,
            
String.valueOf(ConfVars.EXECUTOR_GROUPBY_INMEMORY_HASH_THRESHOLD.defaultLongVal));
      }
    ```
    
    After than, the patch works well. the patch nice to me.  Here is my +1. 
I'll commit it soon.
    
    Thanks!


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