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)

Reply via email to