zstan commented on PR #4332:
URL: https://github.com/apache/calcite/pull/4332#issuecomment-2841788818

   ```
   CREATE TABLE integers(i INTEGER);
   INSERT INTO integers VALUES (1), (2), (3), (NULL);
   SELECT i=ANY(SELECT i FROM integers WHERE i=i1.i) FROM integers i1 ORDER BY 
i;
   ```
   also need to pass, with results:
   
   ```
   true
   true
   true
   false
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to