diff options
author | Michael Paquier | 2018-08-24 13:54:07 +0000 |
---|---|---|
committer | Michael Paquier | 2018-08-24 13:54:07 +0000 |
commit | db72302b0a846b0790ddc487c109d7c0880d4bcc (patch) | |
tree | 5660bc1148cca1c1854410dc899241e7812282b6 | |
parent | 143290efd0795b61ed2c8358fc1767e799140047 (diff) |
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/[email protected]
-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> |