summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Munro <tmunro@postgresql.org>2018-08-17 11:38:44 +1200
committerThomas Munro <tmunro@postgresql.org>2018-08-17 11:53:31 +1200
commit3fe8c13a31bcdd0220c0c0891c2a161087600a5d (patch)
treead333c265694b45e4cc2c25a260929befea88c47
parent5257b9bfbafdbb17fa7b3a1d387dfaa7d40626cb (diff)
Proof-reading for documentation.
Somebody accidentally a word. Back-patch to 9.6. Reported-by: Justin Pryzby Discussion: https://postgr.es/m/20180816195431.GA23707%40telsasoft.com
-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 8ec5e05c9e4..2ec3157a0aa 100644
--- a/doc/src/sgml/parallel.sgml
+++ b/doc/src/sgml/parallel.sgml
@@ -413,7 +413,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
unsafe, because this would require predicting every operation which the
function could possibly perform. In general, this is equivalent to the
Halting Problem and therefore impossible. Even for simple functions
- where it conceivably be done, we do not try, since this would be expensive
+ where it could conceivably be done, we do not try, since this would be expensive
and error-prone. Instead, all user-defined functions are assumed to
be parallel unsafe unless otherwise marked. When using
<xref linkend="sql-createfunction"> or