Location via proxy:
[ UP ]
[Report a bug]
[Manage cookies]
No cookies
No scripts
No ads
No referrer
Show this form
projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
42d0d46
)
doc: clarify recursion internal behavior
author
Bruce Momjian
<bruce@momjian.us>
Sat, 3 Sep 2022 01:57:41 +0000
(21:57 -0400)
committer
Bruce Momjian
<bruce@momjian.us>
Sat, 3 Sep 2022 01:57:41 +0000
(21:57 -0400)
Reported-by: Drew DeVault
Discussion: https://postgr.es/m/
20211018091720
.31299-1-sir@cmpwn.com
Backpatch-through: 10
doc/src/sgml/queries.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/queries.sgml
b/doc/src/sgml/queries.sgml
index 602fdce7caa458c260de20729db73fd6c6ff8a34..0f2683f4d0744a3ebf48873201489baa1eb134b8 100644
(file)
--- a/
doc/src/sgml/queries.sgml
+++ b/
doc/src/sgml/queries.sgml
@@
-2106,9
+2106,8
@@
SELECT sum(n) FROM t;
<note>
<para>
- Strictly speaking, this process is iteration not recursion, but
- <literal>RECURSIVE</> is the terminology chosen by the SQL standards
- committee.
+ While <literal>RECURSIVE</literal> allows queries to be specified
+ recursively, internally all queries are evaluated iteratively.
</para>
</note>