aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Korotkov <akorotkov@postgresql.org>2024-04-08 08:59:27 +0300
committerAlexander Korotkov <akorotkov@postgresql.org>2024-04-08 08:59:27 +0300
commitb453a7a16a7ed2ba96522e521143bc652b74875f (patch)
tree05001727513e8f24cf2ac4454d338dae66888cf8 /src
parent2af75e1174786a02fc35755c0cb98c522d72a065 (diff)
downloadpostgresql-b453a7a16a7ed2ba96522e521143bc652b74875f.tar.gz
postgresql-b453a7a16a7ed2ba96522e521143bc652b74875f.zip
Fix the wording of or_to_any_transform_limit description
Reported-by: Kyotaro Horiguchi Discussion: https://postgr.es/m/20240408.144657.1746688590065601661.horikyota.ntt%40gmail.com
Diffstat (limited to 'src')
-rw-r--r--src/backend/utils/misc/guc_tables.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc_tables.c b/src/backend/utils/misc/guc_tables.c
index 83e3a59d7e9..a527ffe0b02 100644
--- a/src/backend/utils/misc/guc_tables.c
+++ b/src/backend/utils/misc/guc_tables.c
@@ -3670,7 +3670,7 @@ struct config_int ConfigureNamesInt[] =
{
{"or_to_any_transform_limit", PGC_USERSET, QUERY_TUNING_OTHER,
- gettext_noop("Set the minimum length of the list of OR clauses to attempt the OR-to-ANY transformation."),
+ gettext_noop("Sets the minimum length of the list of OR clauses to attempt the OR-to-ANY transformation."),
gettext_noop("Once the limit is reached, the planner will try to replace expression like "
"'x=c1 OR x=c2 ..' to the expression 'x = ANY(ARRAY[c1,c2,..])'"),
GUC_EXPLAIN