diff options
author | Thomas Munro <tmunro@postgresql.org> | 2018-08-17 11:32:55 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2018-08-17 11:37:25 +1200 |
commit | dedc6a2bb15d1b62485840ad871902137d74c9a1 (patch) | |
tree | 367942f57d2532dace6d8ce8f3a636a55819168b | |
parent | 6589a435d83ba0b22cb56381fc5b410eb0e27834 (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.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/parallel.sgml b/doc/src/sgml/parallel.sgml index 63d1144018b..3e7bfea07ca 100644 --- a/doc/src/sgml/parallel.sgml +++ b/doc/src/sgml/parallel.sgml @@ -541,7 +541,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 |