Commit ddc053dc authored by David Rowley's avatar David Rowley

doc: Fix grammatical error in partitioning docs

Reported-by: Amit Langote
Discussion: https://postgr.es/m/CA+HiwqGZFkKi0TkBGYpr2_5qrRAbHZoP47AP1BRLUOUkfQdy_A@mail.gmail.com
Backpatch-through: 10
parent 96807283
...@@ -4730,12 +4730,12 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01'; ...@@ -4730,12 +4730,12 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate >= DATE '2008-01-01';
<para> <para>
It is also important to consider the overhead of partitioning during It is also important to consider the overhead of partitioning during
query planning and execution. The query planner is generally able to query planning and execution. The query planner is generally able to
handle partition hierarchies up a few thousand partitions fairly well, handle partition hierarchies with up to a few thousand partitions fairly
provided that typical queries allow the query planner to prune all but a well, provided that typical queries allow the query planner to prune all
small number of partitions. Planning times become longer and memory but a small number of partitions. Planning times become longer and memory
consumption becomes higher when more partitions remain after the planner consumption becomes higher when more partitions remain after the planner
performs partition pruning. This is particularly true for the performs partition pruning. This is particularly true for the
<command>UPDATE</command> and <command>DELETE</command> commands. Another <command>UPDATE</command> and <command>DELETE</command> commands. Another
reason to be concerned about having a large number of partitions is that reason to be concerned about having a large number of partitions is that
the server's memory consumption may grow significantly over a period of the server's memory consumption may grow significantly over a period of
time, especially if many sessions touch large numbers of partitions. time, especially if many sessions touch large numbers of partitions.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment