[
https://issues.apache.org/jira/browse/TAJO-705?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13946656#comment-13946656
]
Hudson commented on TAJO-705:
-----------------------------
SUCCESS: Integrated in Tajo-master-build #132 (See
[https://builds.apache.org/job/Tajo-master-build/132/])
TAJO-705: CTAS always stores tables with CSV storage type into catalog. (jinho)
(jinossy: rev 6a167aeaaea4ed1735e808875037b9796713bc1f)
*
tajo-core/tajo-core-backend/src/test/resources/results/TestCTASQuery/testCtasWithStoreType.result
*
tajo-core/tajo-core-backend/src/test/resources/queries/TestCTASQuery/CtasWithOptions.sql
*
tajo-core/tajo-core-backend/src/test/resources/queries/TestCTASQuery/testCtasWithOptions.sql
*
tajo-core/tajo-core-backend/src/test/resources/queries/TestCTASQuery/testCtasWithStoreType.sql
*
tajo-core/tajo-core-backend/src/main/java/org/apache/tajo/engine/planner/LogicalPlanner.java
*
tajo-catalog/tajo-catalog-common/src/main/java/org/apache/tajo/catalog/CatalogUtil.java
*
tajo-core/tajo-core-backend/src/test/java/org/apache/tajo/engine/query/TestCTASQuery.java
*
tajo-core/tajo-core-backend/src/main/java/org/apache/tajo/master/querymaster/Query.java
*
tajo-core/tajo-core-backend/src/test/resources/results/TestCTASQuery/testCtasWithOptions.result
* CHANGES.txt
*
tajo-core/tajo-core-backend/src/test/resources/queries/TestCTASQuery/CtasWithStoreType.sql
> CTAS always stores tables with CSV storage type into catalog
> ------------------------------------------------------------
>
> Key: TAJO-705
> URL: https://issues.apache.org/jira/browse/TAJO-705
> Project: Tajo
> Issue Type: Bug
> Components: planner/optimizer
> Affects Versions: 0.8-incubating
> Reporter: Hyunsik Choi
> Assignee: Jinho Kim
> Priority: Blocker
> Fix For: 0.8-incubating, 1.0-incubating
>
> Attachments: TAJO-705.patch
>
>
> I'm suspecting that this bug is introduced recently.
> The reproduction code is as follows:
> {noformat}
> tajo> create table rctest using rcfile as select * from region_100;
> Progress: 100%, response time: 0.947 sec
> final state: QUERY_SUCCEEDED, response time: 0.947 sec
> OK
> tajo> \d rctest;
> table name: rctest
> table path: hdfs://gruter102:6020/tajo/warehouse/rctest
> store type: CSV
> number of rows: 5
> volume: 529 B
> Options:
> schema:
> r_regionkey INT8
> r_name TEXT
> r_comment TEXT
> {noformat}
> In this case, 'CSV' should be 'RCFILE'.
--
This message was sent by Atlassian JIRA
(v6.2#6252)