From: Michael Paquier Date: Fri, 24 Aug 2018 13:54:07 +0000 (+0900) Subject: Fix documentation for run-time partition pruning X-Git-Tag: REL_12_BETA1~1670 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db72302b0a846b0790ddc487c109d7c0880d4bcc;p=thirdparty%2Fpostgresql.git 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 --- 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'; - Also, execution-time partition pruning currently only occurs for the - Append node type, not MergeAppend. + Execution-time partition pruning currently occurs for the + Append and MergeAppend node types.