You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Jongyoung Park (JIRA)" <ji...@apache.org> on 2015/05/14 09:53:59 UTC

[jira] [Commented] (TAJO-1463) Add ORCFile store type to create ORCFile table

    [ https://issues.apache.org/jira/browse/TAJO-1463?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14543347#comment-14543347 ] 

Jongyoung Park commented on TAJO-1463:
--------------------------------------

Hi, [~dongjoon].

Because of no reply for the comment of TAJO-29, I take it and its sub-things.

If you have any comment, please leave.

> 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: Jongyoung Park
>            Priority: Minor
>         Attachments: TAJO-1463.Hyun.150329.0.patch.txt, TAJO-1463.Hyun.150329.1.patch.txt, TAJO-1463.Hyun.150331.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)