kosiew commented on issue #16274:
URL: https://github.com/apache/datafusion/issues/16274#issuecomment-3595505501

   The failing test case in cte.slt:
   ```
   query ITI
   WITH RECURSIVE balances AS (
       SELECT * from balance
       UNION ALL
       SELECT time + 1 as time, name, account_balance + 10 as account_balance
       FROM balances
       WHERE time < 10
   )
   ...
   ```


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