[
https://issues.apache.org/jira/browse/TAJO-977?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14074279#comment-14074279
]
ASF GitHub Bot commented on TAJO-977:
-------------------------------------
GitHub user babokim opened a pull request:
https://github.com/apache/tajo/pull/95
TAJO-977: INSERT into a partitioned table as SELECT statement uses a wrong
schema.
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/babokim/tajo TAJO-977
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/tajo/pull/95.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #95
----
commit c42dae2673824f6ac743be31bc1ba541cf963d8f
Author: 김형준 <[email protected]>
Date: 2014-07-25T10:57:38Z
TAJO-977: INSERT into a partitioned table as SELECT statement uses a wrong
schema.
----
> INSERT into a partitioned table as SELECT statement uses a wrong schema.
> ------------------------------------------------------------------------
>
> Key: TAJO-977
> URL: https://issues.apache.org/jira/browse/TAJO-977
> Project: Tajo
> Issue Type: Bug
> Reporter: Hyoungjun Kim
> Assignee: Hyoungjun Kim
> Priority: Minor
>
> Currently Tajo uses a output schema for INSERT into partitioned table
> statement. In most cases, this should not be a problem. But, Parquet file
> occurs a error because Parquet file format has schema meta data itself.
> The result file of the following query has wrong column meta.
> {code}
> create table parquet_test (col1 text, col2 text) using parquet;
> insert into select substr(col1, 1, 3) from table1;
> {code}
--
This message was sent by Atlassian JIRA
(v6.2#6252)