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

Tajo QA commented on TAJO-1223:
-------------------------------

{color:red}*-1 overall.*{color}  Here are the results of testing the latest 
attachment 
  http://issues.apache.org/jira/secure/attachment/12684846/TAJO-1223.patch
  against master revision release-0.9.0-rc0-67-gea2dbf8.

    {color:green}+1 @author.{color}  The patch does not contain any @author 
tags.

    {color:green}+1 tests included.{color}  The patch appears to include 5 new 
or modified test files.

    {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 222 new 
Findbugs (version 2.0.3) warnings.

    {color:red}-1 release audit.{color}  The applied patch generated 360 
release audit warnings.

    {color:green}+1 core tests.{color}  The patch passed unit tests in 
tajo-core tajo-plan.

Test results: 
https://builds.apache.org/job/PreCommit-TAJO-Build/524//testReport/
Release audit warnings: 
https://builds.apache.org/job/PreCommit-TAJO-Build/524//artifact/incubator-tajo/patchprocess/patchReleaseAuditProblems.txt
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-TAJO-Build/524//artifact/incubator-tajo/patchprocess/newPatchFindbugsWarningstajo-core.html
Findbugs warnings: 
https://builds.apache.org/job/PreCommit-TAJO-Build/524//artifact/incubator-tajo/patchprocess/newPatchFindbugsWarningstajo-plan.html
Console output: https://builds.apache.org/job/PreCommit-TAJO-Build/524//console

This message is automatically generated.

> Wrong query verification against asterisk and more expressions in select list
> -----------------------------------------------------------------------------
>
>                 Key: TAJO-1223
>                 URL: https://issues.apache.org/jira/browse/TAJO-1223
>             Project: Tajo
>          Issue Type: Bug
>            Reporter: Hyunsik Choi
>            Assignee: Hyunsik Choi
>             Fix For: 0.9.1
>
>         Attachments: TAJO-1223.patch
>
>
> *Reproduction*
> {code:sql}
> create table lineitem_year_month (
>  l_orderkey bigint,
>  l_partkey bigint,
>  l_suppkey bigint,
>  l_linenumber int,
>  l_quantity float8,
>  l_extendedprice float8,
>  l_discount float8,
>  l_tax float8,
>  l_returnflag text,
>  l_linestatus text,
>  l_shipdate text,
>  l_commitdate text,
>  l_receiptdate text,
>  l_shipinstruct text,
>  l_shipmode text,
>  l_comment text
> ) PARTITION BY COLUMN (year TEXT, MONTH TEXT);
> {code}
> {noformat}
> $ INSERT INTO lineitem_year_month 
>   SELECT *, SUBSTR(l_shipdate, 1,4) as year, SUBSTR(l_shipdate, 6, 2) as 
> month 
>   FROM 
>   default.lineitem;
> ERROR: INSERT has smaller expressions than target columns
> {noformat}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to