From: Peter Eisentraut Date: Mon, 12 Nov 2018 13:34:28 +0000 (+0100) Subject: doc: Small run-time pruning doc fix X-Git-Tag: REL_12_BETA1~1260 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=253b3f6760e850945a91e2d872eab3b2802ffca2;p=postgresql doc: Small run-time pruning doc fix A note in ddl.sgml used to mention that run-time pruning was only implemented for Append. When we got MergeAppend support, this was updated to mention that MergeAppend is supported too. This is slightly weird as it's not all that obvious what exactly isn't supported when we mention: Both of these behaviors are likely to be changed in a future release of PostgreSQL. This patch updates this to mention that ModifyTable is unsupported, which makes the above fragment make sense again. Author: David Rowley --- diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index b5ed1b7939..cab6cf24ee 100644 --- a/doc/src/sgml/ddl.sgml +++ b/doc/src/sgml/ddl.sgml @@ -3944,8 +3944,10 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01'; - Execution-time partition pruning currently occurs for the + Execution-time partition pruning currently only occurs for the Append and MergeAppend node types. + It is not yet implemented for the ModifyTable node + type.