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


##########
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:
   UPDATE: I have checked @zabetak  comments, and I agree, I think it is 
clearer to keep the SQL example first. 
   So I'll resolve this conversation, my comment can be disregarded in favor of 
@zabetak 's suggestion.



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