You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Vladimir Ermakov (Jira)" <ji...@apache.org> on 2021/11/24 13:56:00 UTC

[jira] [Created] (IGNITE-15983) Regression when using SELECT (EXISTS (...)) part 2

Vladimir Ermakov created IGNITE-15983:
-----------------------------------------

             Summary: Regression when using SELECT (EXISTS (...)) part 2
                 Key: IGNITE-15983
                 URL: https://issues.apache.org/jira/browse/IGNITE-15983
             Project: Ignite
          Issue Type: Bug
          Components: sql
            Reporter: Vladimir Ermakov
            Assignee: Vladimir Ermakov


In the task https://issues.apache.org/jira/browse/IGNITE-14354 erroneous queries were not fully corrected.

So, a query like
{code:java}
CREATE TABLE t (i int PRIMARY KEY, j int);
SELECT (EXISTS (SELECT 1 FROM t WHERE t.i = 1));  {code}
now passes, when a query
{code:java}
CREATE TABLE t (i int PRIMARY KEY, j int);
SELECT (EXISTS (SELECT i FROM t WHERE t.i = 1));  {code}
still fails. 

The original cause of the error must be fixed.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)