From db72302b0a846b0790ddc487c109d7c0880d4bcc Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Fri, 24 Aug 2018 22:54:07 +0900 Subject: [PATCH] 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 --- doc/src/sgml/ddl.sgml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml index 5ae3cacbf0..b5ed1b7939 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.