[
https://issues.apache.org/jira/browse/TAJO-1463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14385770#comment-14385770
]
Tajo QA commented on TAJO-1463:
-------------------------------
{color:red}*-1 overall.*{color} Here are the results of testing the latest
attachment
http://issues.apache.org/jira/secure/attachment/12708041/TAJO-1463.Hyun.150329.1.patch.txt
against master revision release-0.9.0-rc0-225-g7f77593.
{color:green}+1 @author.{color} The patch does not contain any @author
tags.
{color:red}-1 tests included.{color} The patch doesn't appear to include
any new or modified tests.
Please justify why no new tests are needed for this
patch.
Also please list what manual steps were performed to
verify this patch.
{color:green}+1 javac.{color} The applied patch does not increase the
total number of javac compiler warnings.
{color:green}+1 javadoc.{color} The applied patch does not increase the
total number of javadoc warnings.
{color:green}+1 checkstyle.{color} The patch generated 0 code style errors.
{color:red}-1 findbugs.{color} The patch appears to introduce 8 new
Findbugs (version 2.0.3) warnings.
{color:green}+1 release audit.{color} The applied patch does not increase
the total number of release audit warnings.
{color:green}+1 core tests.{color} The patch passed unit tests in
tajo-catalog/tajo-catalog-common tajo-storage/tajo-storage-common.
Test results:
https://builds.apache.org/job/PreCommit-TAJO-Build/673//testReport/
Findbugs warnings:
https://builds.apache.org/job/PreCommit-TAJO-Build/673//artifact/incubator-tajo/patchprocess/newPatchFindbugsWarningstajo-storage-common.html
Console output: https://builds.apache.org/job/PreCommit-TAJO-Build/673//console
This message is automatically generated.
> Add ORCFile store type to create ORCFile table
> ----------------------------------------------
>
> Key: TAJO-1463
> URL: https://issues.apache.org/jira/browse/TAJO-1463
> Project: Tajo
> Issue Type: Sub-task
> Components: storage
> Reporter: Dongjoon Hyun
> Assignee: Dongjoon Hyun
> Priority: Minor
> Attachments: TAJO-1463.Hyun.150329.0.patch.txt,
> TAJO-1463.Hyun.150329.1.patch.txt
>
>
> To support ORCFile, Tajo can recognize ORCFile as a store type.
> * Before
> {code}
> default> create table t(a int) using orcfile;
> ERROR: Store format orcfile is not supported.
> {code}
> * After
> {code}
> default> create table t1(a int) using orcfile;
> OK
> default> select * from t1;
> a
> -------------------------------
> (0 rows, 0.054 sec, 0 B selected)
> {code}
> For non-empty orcfile table, fix NPE error into the following normal process.
> {code}
> default> select * from orc1;
> ERROR: Unknown Storage Type: ORCFILE
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)