jonahgao commented on issue #9506:
URL: 
https://github.com/apache/arrow-datafusion/issues/9506#issuecomment-1987512263

   I think ideally it should support any scalar expression.
   In PostgreSQL, even functions and scalar subqueries are allowed.
   ```sh
   psql=> select * from t limit (select * from t limit 1);
    a
   ---
    1
   (1 row)
   
   psql=> select * from t limit random() + 1;
    a
   ---
    1
   (1 row)
   ```


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