rubenada commented on code in PR #3081:
URL: https://github.com/apache/calcite/pull/3081#discussion_r1114163269


##########
site/_docs/algebra.md:
##########
@@ -265,17 +265,7 @@ or `builder.field(2, 1, 1)`.
 ### Recursive Queries
 
 Warning: The current API is experimental and subject to change without notice.
-A SQL recursive query, e.g. this one that generates the sequence 1, 2, 3, 
...10:
-
-{% highlight sql %}
-WITH RECURSIVE aux(i) AS (
-  VALUES (1)
-  UNION ALL
-  SELECT i+1 FROM aux WHERE i < 10
-)
-SELECT * FROM aux
-{% endhighlight %}
-
+A recursive query, e.g. this one that generates the sequence 1, 2, 3, ...10,

Review Comment:
   nitpick: with the change, IMO the expression "this one" sounds a bit 
strange. Proposal:
   ```
   A recursive query, e.g. generating the sequence 1, 2, 3, ...10,
   can be produced using a scan on a TransientTable and a RepeatUnion:
   ```



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