diff options
author | Michael Paquier <michael@paquier.xyz> | 2018-08-24 22:54:07 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2018-08-24 22:54:07 +0900 |
commit | db72302b0a846b0790ddc487c109d7c0880d4bcc (patch) | |
tree | 5660bc1148cca1c1854410dc899241e7812282b6 | |
parent | 143290efd0795b61ed2c8358fc1767e799140047 (diff) | |
download | postgresql-db72302b0a846b0790ddc487c109d7c0880d4bcc.tar.gz postgresql-db72302b0a846b0790ddc487c109d7c0880d4bcc.zip |
Fix documentation for run-time partition pruning
Since 5220bb7, not only Append, but also MergeAppend support the
operation.
Author: Amit Langote
Discussion: https://postgr.es/m/59d8eb92-4536-c44e-54e2-305b9b3d8eb7@lab.ntt.co.jp
-rw-r--r-- | doc/src/sgml/ddl.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 5ae3cacbf0e..b5ed1b79398 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -3944,8 +3944,8 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01'; </para> <para> - Also, execution-time partition pruning currently only occurs for the - <literal>Append</literal> node type, not <literal>MergeAppend</literal>. + Execution-time partition pruning currently occurs for the + <literal>Append</literal> and <literal>MergeAppend</literal> node types. </para> <para> |