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

    https://github.com/apache/tajo/pull/1005#discussion_r60709717
  
    --- Diff: tajo-plan/src/main/java/org/apache/tajo/plan/LogicalPlanner.java 
---
    @@ -577,7 +577,7 @@ public static void verifyProjectedFields(QueryBlock 
block, Projectable projectab
       public static void prohibitNestedRecordProjection(Projectable 
projectable)
           throws TajoException {
         for (Target t : projectable.getTargets()) {
    -      if (t.getEvalTree().getValueType().getType() == 
TajoDataTypes.Type.RECORD) {
    +      if (t.getEvalTree().getValueType().isStruct()) {
    --- End diff --
    
    Currently, record is right. I need to make them consistent. According to my 
future plan, struct would be better. That's why they are mixed.


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