jccampagne commented on issue #22093:
URL: https://github.com/apache/datafusion/issues/22093#issuecomment-4811464203
This is fixed in version 54:
```
% datafusion-cli
DataFusion CLI v54.0.0
> WITH RECURSIVE chain AS (
SELECT 'A' AS level
UNION ALL
SELECT level || '>' FROM chain WHERE length(level) < 5
)
select * from chain
;
+-------+
| level |
+-------+
| A |
| A> |
| A>> |
| A>>> |
| A>>>> |
+-------+
5 row(s) fetched.
Elapsed 0.043 seconds.
```
Also works in my use case.
Thanks!
--
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]