aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Rowley <drowley@postgresql.org>2021-05-11 15:55:33 +1200
committerDavid Rowley <drowley@postgresql.org>2021-05-11 15:55:33 +1200
commit1692d0c3a3fc7716d7d00e0d657248cb98bf4df8 (patch)
treed73e9d95171edc9d7cadcfc3ff38e963a5461093
parent9ca40dcd4d0cad43d95a9a253fafaa9a9ba7de24 (diff)
downloadpostgresql-1692d0c3a3fc7716d7d00e0d657248cb98bf4df8.tar.gz
postgresql-1692d0c3a3fc7716d7d00e0d657248cb98bf4df8.zip
Doc: Remove outdated note about run-time partition pruning
The note is no longer true as of 86dc90056, so remove it. Author: Amit Langote Discussion: https://postgr.es/m/CA+HiwqFxQn7Hz1wT+wYgnf_9SK0c4BwOOwFFT8jcSZwJrd8HEA@mail.gmail.com
-rw-r--r--doc/src/sgml/ddl.sgml10
1 files changed, 0 insertions, 10 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index 63bc946c3b6..498654876fd 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -4678,16 +4678,6 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2008-01-01';
Partition pruning can be disabled using the
<xref linkend="guc-enable-partition-pruning"/> setting.
</para>
-
- <note>
- <para>
- Execution-time partition pruning currently only occurs for the
- <literal>Append</literal> and <literal>MergeAppend</literal> node types.
- It is not yet implemented for the <literal>ModifyTable</literal> node
- type, but that is likely to be changed in a future release of
- <productname>PostgreSQL</productname>.
- </para>
- </note>
</sect2>
<sect2 id="ddl-partitioning-constraint-exclusion">