[
https://issues.apache.org/jira/browse/TAJO-1387?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14354922#comment-14354922
]
Tajo QA commented on TAJO-1387:
-------------------------------
{color:red}*-1 overall.*{color} Here are the results of testing the latest
attachment
http://issues.apache.org/jira/secure/attachment/12703657/TAJO-1387.patch
against master revision release-0.9.0-rc0-193-g69fd8d2.
{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:green}+1 findbugs.{color} The patch does not introduce any 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-algebra.
Test results:
https://builds.apache.org/job/PreCommit-TAJO-Build/607//testReport/
Console output: https://builds.apache.org/job/PreCommit-TAJO-Build/607//console
This message is automatically generated.
> Correct error message for EXISTS clause
> ---------------------------------------
>
> Key: TAJO-1387
> URL: https://issues.apache.org/jira/browse/TAJO-1387
> Project: Tajo
> Issue Type: Bug
> Components: operator/expression
> Environment: Tajo 0.11.0-SNAPSHOT (rev. 69fd8d2 source checksum
> 2d2e9d2 compiled by dongjoon 2015-03-10T13:27Z)
> Reporter: Dongjoon Hyun
> Assignee: Dongjoon Hyun
> Priority: Minor
> Attachments: TAJO-1387.patch
>
>
> TSQL prints a wrong error message related `InPredicate` when EXISTS clause is
> used like following statement.
> ---
> default> select * from t1 where exists (select * from t1);
> ERROR: Can not set boolean field org.apache.tajo.algebra.InPredicate.not to
> org.apache.tajo.algebra.ExistsPredicate
> ---
> It should be like the following.
> ---
> default> select * from t1 where exists (select * from t1);
> select * from t1 where exists (select * from t1);
> ERROR: Cannot support EXISTS clause yet
> ---
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)