Skip to content

Commit f5daf7f

Browse files
committed
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
1 parent e0afac1 commit f5daf7f

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

doc/src/sgml/ddl.sgml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4525,9 +4525,8 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01';
45254525
QUERY PLAN
45264526
-----------------------------------------------------------------------------------
45274527
Aggregate (cost=37.75..37.76 rows=1 width=8)
4528-
-> Append (cost=0.00..36.21 rows=617 width=0)
4529-
-> Seq Scan on measurement_y2008m01 (cost=0.00..33.12 rows=617 width=0)
4530-
Filter: (logdate >= '2008-01-01'::date)
4528+
-> Seq Scan on measurement_y2008m01 (cost=0.00..33.12 rows=617 width=0)
4529+
Filter: (logdate >= '2008-01-01'::date)
45314530
</programlisting>
45324531
</para>
45334532

0 commit comments

Comments
 (0)