Github user dongjoon-hyun commented on the pull request:

    https://github.com/apache/tajo/pull/543#issuecomment-94327560
  
    By the way, I added a bug-fix code like the following, but it causes test 
failures. I will investigate it.
    ```
    -    fieldsByName.put(newCol.getSimpleName(), TUtil.newList(fields.size() - 
1));
    +    if (fieldsByName.containsKey(newCol.getSimpleName())) {
    +      fieldsByName.get(newCol.getSimpleName()).add(fields.size() - 1);
    +    } else {
    +      fieldsByName.put(newCol.getSimpleName(), TUtil.newList(fields.size() 
- 1));
    +    }
    ```


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