You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@tajo.apache.org by "Seungun Choe (JIRA)" <ji...@apache.org> on 2014/01/29 08:22:11 UTC

[jira] [Commented] (TAJO-566) BIN/TAJO_DUMP makes wrong ddl script.

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

Seungun Choe commented on TAJO-566:
-----------------------------------

Above test results were run on older versions.
But These problem was gone on newly uploaded version. 
New problem appeared. 
The problem is as follows.
{code}
PARTITION BY COLUMN(o_year TEXTo_month TEXT)
{code}
There is no ",".
It's changed follows.
{code}
PARTITION BY COLUMN(o_year TEXT, o_month TEXT)
{code}

> BIN/TAJO_DUMP makes wrong ddl script.
> -------------------------------------
>
>                 Key: TAJO-566
>                 URL: https://issues.apache.org/jira/browse/TAJO-566
>             Project: Tajo
>          Issue Type: Bug
>            Reporter: Seungun Choe
>            Priority: Blocker
>             Fix For: 0.8-incubating
>
>
> BIN/TAJO_DUMP makes wrong ddl script.
> * duplicated partition column 
> * no data type in PARTITION BY COLUMN
> * PARTITION BY COLUMN clause must be placed before LOCATION 
> The following is dump result.
> {code}
> CREATE EXTERNAL TABLE test1 (col1 TEXT, col2 TEXT, col3 TEXT) USING CSV WITH ('csvfile.delimiter'='|') LOCATION 'hdfs://host01/tajo/table1' PARTITION BY COLUMN(col3);
> {code}



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)