kosiew commented on PR #22037:
URL: https://github.com/apache/datafusion/pull/22037#issuecomment-4441668912

   @neilconway 
   
   I added 
   ```
     WITH RECURSIVE t(a, b) AS (
       SELECT 0 AS a, 0 AS b
       UNION ALL
       SELECT b AS a, CAST(NULL AS INT) AS b FROM t WHERE a IS NOT NULL
     )
     SELECT * FROM t;
   ```
   
   and also implemented `mark CTE columns as nullable`


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