diff options
author | Robert Haas | 2018-05-09 19:15:03 +0000 |
---|---|---|
committer | Robert Haas | 2018-05-09 19:15:03 +0000 |
commit | ddc1f32ee5073503a396c7a4df32865205dd3970 (patch) | |
tree | f2f8f659018a479dc0ecb97c354af1de060ad3bf | |
parent | 234bb985c574d1ed9e63d382b327ac3d3e329c56 (diff) |
doc: Restrictions on InitPlans in parallel queries relaxed.
This updates the documentation for changes originally made in commit
e89a71fb449af2ef74f47be1175f99956cf21524.
Patch by me, reviewed (but not entirely endorsed) by Amit Kapila.
Discussion: http://postgr.es/m/CA+Tgmoa+vupW8V_gBonz6hU7WwN2zJ=UTsVWCVB+rN6vaaXfZw@mail.gmail.com
-rw-r--r-- | doc/src/sgml/parallel.sgml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/doc/src/sgml/parallel.sgml b/doc/src/sgml/parallel.sgml index d8f001d4b6..d7f428c1d4 100644 --- a/doc/src/sgml/parallel.sgml +++ b/doc/src/sgml/parallel.sgml @@ -473,7 +473,13 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%'; <listitem> <para> - Access to an <literal>InitPlan</literal> or correlated <literal>SubPlan</literal>. + Plan nodes to which an <literal>InitPlan</literal> is attached. + </para> + </listitem> + + <listitem> + <para> + Plan nodes which reference a correlated <literal>SubPlan</literal>. </para> </listitem> </itemizedlist> |