Commit d87ab886 authored by Michael Paquier's avatar Michael Paquier

Fix typos in reloptions.c

Author: Kirk Jamison
Discussion: https://postgr.es/m/D09B13F772D2274BB348A310EE3027C6493463@g01jpexmbkw24
parent d4e2a843
...@@ -77,7 +77,7 @@ ...@@ -77,7 +77,7 @@
* n_distinct options can be set at ShareUpdateExclusiveLock because they * n_distinct options can be set at ShareUpdateExclusiveLock because they
* are only used during ANALYZE, which uses a ShareUpdateExclusiveLock, * are only used during ANALYZE, which uses a ShareUpdateExclusiveLock,
* so the ANALYZE will not be affected by in-flight changes. Changing those * so the ANALYZE will not be affected by in-flight changes. Changing those
* values has no affect until the next ANALYZE, so no need for stronger lock. * values has no effect until the next ANALYZE, so no need for stronger lock.
* *
* Planner-related parameters can be set with ShareUpdateExclusiveLock because * Planner-related parameters can be set with ShareUpdateExclusiveLock because
* they only affect planning and not the correctness of the execution. Plans * they only affect planning and not the correctness of the execution. Plans
...@@ -93,7 +93,7 @@ ...@@ -93,7 +93,7 @@
* vacuum_truncate can be set at ShareUpdateExclusiveLock because it * vacuum_truncate can be set at ShareUpdateExclusiveLock because it
* is only used during VACUUM, which uses a ShareUpdateExclusiveLock, * is only used during VACUUM, which uses a ShareUpdateExclusiveLock,
* so the VACUUM will not be affected by in-flight changes. Changing its * so the VACUUM will not be affected by in-flight changes. Changing its
* value has no affect until the next VACUUM, so no need for stronger lock. * value has no effect until the next VACUUM, so no need for stronger lock.
*/ */
static relopt_bool boolRelOpts[] = static relopt_bool boolRelOpts[] =
......
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