mihaibudiu commented on code in PR #3480:
URL: https://github.com/apache/calcite/pull/3480#discussion_r1369643978
##########
core/src/test/java/org/apache/calcite/test/enumerable/EnumerableRepeatUnionTest.java:
##########
@@ -45,6 +45,17 @@
*/
class EnumerableRepeatUnionTest {
+ @Test void testGenerateNumbersUsingSql() {
+ CalciteAssert.that()
+ .query("WITH RECURSIVE delta(n) AS (\n"
+ + " VALUES (1)\n"
+ + " UNION ALL\n"
Review Comment:
shouldn't UNION ALL actually never converge?
Why isn't the result collection a multiset that grows infinitely?
--
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]