aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2018-08-21 12:13:16 +0900
committerMichael Paquier <michael@paquier.xyz>2018-08-21 12:15:16 +0900
commit87c596cda6d7c79266cde44a1e9fc8ea1b8acefa (patch)
tree08555b4a54612822b9fc94b4d806a74895baf8d4
parent9fc9933695af4e233c2da704be4ad5c681cf7104 (diff)
downloadpostgresql-87c596cda6d7c79266cde44a1e9fc8ea1b8acefa.tar.gz
postgresql-87c596cda6d7c79266cde44a1e9fc8ea1b8acefa.zip
Fix typo in description of enable_parallel_hash
Author: Kyotaro Horiguchi Discussion: https://postgr.es/m/20180821.115841.93250330.horiguchi.kyotaro@lab.ntt.co.jp
-rw-r--r--src/backend/utils/misc/guc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c
index 424932bcc9c..2335e2a04e2 100644
--- a/src/backend/utils/misc/guc.c
+++ b/src/backend/utils/misc/guc.c
@@ -954,7 +954,7 @@ static struct config_bool ConfigureNamesBool[] =
},
{
{"enable_parallel_hash", PGC_USERSET, QUERY_TUNING_METHOD,
- gettext_noop("Enables the planner's user of parallel hash plans."),
+ gettext_noop("Enables the planner's use of parallel hash plans."),
NULL
},
&enable_parallel_hash,