dssysolyatin commented on PR #4592:
URL: https://github.com/apache/calcite/pull/4592#issuecomment-3429490291

   @mihaibudiu Which engine support such SQL query ?
   
   For example at PostgreSQL, I can not execute
   ```
   WITH tbl(r) AS (VALUES(1)) SELECT ARRAY(SELECT r, r FROM tbl LIMIT 1)
   ```
   
   Only
   ```
   WITH tbl(r) AS (VALUES(1)) SELECT ARRAY(SELECT ROW(r, r) FROM tbl LIMIT 1)
   ```


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