Return-Path: X-Original-To: apmail-tajo-commits-archive@minotaur.apache.org Delivered-To: apmail-tajo-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 30F1B17540 for ; Tue, 10 Mar 2015 19:46:37 +0000 (UTC) Received: (qmail 15514 invoked by uid 500); 10 Mar 2015 19:46:35 -0000 Delivered-To: apmail-tajo-commits-archive@tajo.apache.org Received: (qmail 15477 invoked by uid 500); 10 Mar 2015 19:46:35 -0000 Mailing-List: contact commits-help@tajo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tajo.apache.org Delivered-To: mailing list commits@tajo.apache.org Received: (qmail 15468 invoked by uid 99); 10 Mar 2015 19:46:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 10 Mar 2015 19:46:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 92619E1862; Tue, 10 Mar 2015 19:46:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hyunsik@apache.org To: commits@tajo.apache.org Message-Id: <61b23e3fadc9421080d3958283da273b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: tajo git commit: TAJO-1387: Correct error message for EXISTS clause. Date: Tue, 10 Mar 2015 19:46:35 +0000 (UTC) Repository: tajo Updated Branches: refs/heads/master 69fd8d2a0 -> 13316bd26 TAJO-1387: Correct error message for EXISTS clause. closes #409 Signed-off-by: Hyunsik Choi Project: http://git-wip-us.apache.org/repos/asf/tajo/repo Commit: http://git-wip-us.apache.org/repos/asf/tajo/commit/13316bd2 Tree: http://git-wip-us.apache.org/repos/asf/tajo/tree/13316bd2 Diff: http://git-wip-us.apache.org/repos/asf/tajo/diff/13316bd2 Branch: refs/heads/master Commit: 13316bd26cbd7eedcc97c74f317ca743bd2eba5b Parents: 69fd8d2 Author: Dongjoon Hyun Authored: Tue Mar 10 22:41:50 2015 +0900 Committer: Hyunsik Choi Committed: Tue Mar 10 12:43:08 2015 -0700 ---------------------------------------------------------------------- CHANGES | 3 +++ .../src/main/java/org/apache/tajo/algebra/ExistsPredicate.java | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tajo/blob/13316bd2/CHANGES ---------------------------------------------------------------------- diff --git a/CHANGES b/CHANGES index d132eb5..630417f 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,9 @@ Release 0.11.0 - unreleased BUG FIXES + TAJO-1387: Correct error message for EXISTS clause. + (Contributed by Dongjoon Hyun, Committed by hyunsik) + TAJO-1378: Incorrect version(0.8.0) info in tajo-doc. (Contributed by Dongjoon Hyun, Committed by jihoon) http://git-wip-us.apache.org/repos/asf/tajo/blob/13316bd2/tajo-algebra/src/main/java/org/apache/tajo/algebra/ExistsPredicate.java ---------------------------------------------------------------------- diff --git a/tajo-algebra/src/main/java/org/apache/tajo/algebra/ExistsPredicate.java b/tajo-algebra/src/main/java/org/apache/tajo/algebra/ExistsPredicate.java index 389fd74..fa8b3d4 100644 --- a/tajo-algebra/src/main/java/org/apache/tajo/algebra/ExistsPredicate.java +++ b/tajo-algebra/src/main/java/org/apache/tajo/algebra/ExistsPredicate.java @@ -27,7 +27,7 @@ public class ExistsPredicate extends UnaryOperator { private boolean not; public ExistsPredicate(SimpleTableSubQuery simpleTableSubQuery, boolean not) { - super(OpType.InPredicate); + super(OpType.ExistsPredicate); this.not = not; setChild(simpleTableSubQuery); }