morrySnow opened a new pull request, #21976:
URL: https://github.com/apache/doris/pull/21976

   ## Proposed changes
   
   Issue Number: close #xxx
   
   <!--Describe your changes.-->
   
   We should not remove any limit from uncorrelated subquery. For Example
   ```sql
   -- should return nothing, but return all tuple of t if we remove limit from 
exists
   SELECT * FROM t WHERE EXISTS (SELECT * FROM t limit 0);
   
   -- should return the tuple with smallest c1 in t,
   -- but report error if we remove limit from scalar subquery
   SELECT * FROM t WHERE c1 = (SELECT * FROM t ORDER BY c1 LIMIT 1);
   ```
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at 
[[email protected]](mailto:[email protected]) by explaining why you 
chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to