[
https://issues.apache.org/jira/browse/TAJO-1752?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14693385#comment-14693385
]
Hudson commented on TAJO-1752:
------------------------------
ABORTED: Integrated in Tajo-master-build #797 (See
[https://builds.apache.org/job/Tajo-master-build/797/])
TAJO-1752: NameResolver cannot find nested records properly. (jihoonson: rev
fd6a95180ecfa05df7cd0b1a8a957057c9788ad6)
*
tajo-core/src/test/java/org/apache/tajo/engine/query/TestSelectNestedRecord.java
* tajo-plan/src/main/java/org/apache/tajo/plan/nameresolver/NameResolver.java
* tajo-core/src/test/resources/queries/TestSelectNestedRecord/testSelect3.sql
*
tajo-catalog/tajo-catalog-common/src/main/java/org/apache/tajo/catalog/NestedPathUtil.java
* tajo-core/src/test/resources/queries/TestSelectNestedRecord/sample2_ddl.sql
*
tajo-core/src/test/resources/dataset/TestSelectNestedRecord/sample2/sample2.json
* tajo-core/src/test/resources/results/TestSelectNestedRecord/testSelect3.result
* tajo-common/src/main/java/org/apache/tajo/util/StringUtils.java
* CHANGES
> NameResolver cannot find nested records properly
> ------------------------------------------------
>
> Key: TAJO-1752
> URL: https://issues.apache.org/jira/browse/TAJO-1752
> Project: Tajo
> Issue Type: Bug
> Components: Planner/Optimizer
> Reporter: Jihoon Son
> Assignee: Jihoon Son
> Fix For: 0.11.0
>
>
> See the title.
> You can reproduce as follows:
> {noformat}
> default> CREATE EXTERNAL TABLE json_test (
> id TEXT, type TEXT, url TEXT,
> actor RECORD (
> id bigint,
> login text
> ),
> payload RECORD (
> push_id bigint,
> commits RECORD (
> message text,
> url text
> )
> ),
> public BOOLEAN,
> created_at text
> )
> USING JSON
> LOCATION 'path'
> ;
> default>
> default> select type, payload.commits.message as msg from gh_json_test limit
> 3;
> ERROR: column 'payload.commits.message' does not exist
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)