summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-09-25 13:44:30 +0900
committerMichael Paquier <michael@paquier.xyz>2019-09-25 13:44:30 +0900
commitf5daf7f3266ff5a92f1bf8d386bd5ac3d7d042d6 (patch)
treeac62b65bcab634af87f8a2d0602c115bc755fb2e
parente0afac124ec7026a49909436ebcfc2bd999852a8 (diff)
downloadpostgresql-f5daf7f3266ff5a92f1bf8d386bd5ac3d7d042d6.tar.gz
Doc: Fix example related to partition pruning
Append node has been removed in v12 when there would be only one subnode under it. Author: Amit Langote Discussion: https://postgr.es/m/CA+HiwqHhS62w8zUFXF4NBjvMboCXYnD-jWoWp-tfo2aHvP3Gxg@mail.gmail.com Backpatch-through: 12
-rw-r--r--doc/src/sgml/ddl.sgml5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index b2bab81840..d7158c1b03 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -4525,9 +4525,8 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2008-01-01';
QUERY PLAN
-----------------------------------------------------------------------------------
Aggregate (cost=37.75..37.76 rows=1 width=8)
- -&gt; Append (cost=0.00..36.21 rows=617 width=0)
- -&gt; Seq Scan on measurement_y2008m01 (cost=0.00..33.12 rows=617 width=0)
- Filter: (logdate &gt;= '2008-01-01'::date)
+ -&gt; Seq Scan on measurement_y2008m01 (cost=0.00..33.12 rows=617 width=0)
+ Filter: (logdate &gt;= '2008-01-01'::date)
</programlisting>
</para>