aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFujii Masao <fujii@postgresql.org>2016-12-05 20:44:21 +0900
committerFujii Masao <fujii@postgresql.org>2016-12-05 20:48:20 +0900
commitdaac8e30eb7874722f277ae3461abe46a39e56ed (patch)
tree45fe1c3c0aa7752ef911b7ddef22a255bc80cb75
parentfe0a0b5993dfe24e4b3bcf52fa64ff41a444b8f1 (diff)
downloadpostgresql-daac8e30eb7874722f277ae3461abe46a39e56ed.tar.gz
postgresql-daac8e30eb7874722f277ae3461abe46a39e56ed.zip
Fix typo in docs.
Reported-by: Darko Prelec
-rw-r--r--doc/src/sgml/parallel.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/parallel.sgml b/doc/src/sgml/parallel.sgml
index d0b438e8895..38a040ef75e 100644
--- a/doc/src/sgml/parallel.sgml
+++ b/doc/src/sgml/parallel.sgml
@@ -240,7 +240,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
copy of the output result set, so the query would not run any faster
than normal but would produce incorrect results. Instead, the parallel
portion of the plan must be what is known internally to the query
- optimizer as a <firstterm>partial plan</>; that is, it must constructed
+ optimizer as a <firstterm>partial plan</>; that is, it must be constructed
so that each process which executes the plan will generate only a
subset of the output rows in such a way that each required output row
is guaranteed to be generated by exactly one of the cooperating processes.