diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2005-11-04 22:18:26 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2005-11-04 22:18:26 +0000 |
commit | 9e1843c7eed0cc1e458affd9201885e2bf8d08c6 (patch) | |
tree | aac55e5479d8f97646025d38710c555298161f59 /src | |
parent | af331e2526f1dbb23926877a324e4723879c2246 (diff) | |
download | postgresql-9e1843c7eed0cc1e458affd9201885e2bf8d08c6.tar.gz postgresql-9e1843c7eed0cc1e458affd9201885e2bf8d08c6.zip |
Fix logical error in option description.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/utils/misc/guc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/utils/misc/guc.c b/src/backend/utils/misc/guc.c index 791b925ee28..eb087e67fe7 100644 --- a/src/backend/utils/misc/guc.c +++ b/src/backend/utils/misc/guc.c @@ -10,7 +10,7 @@ * Written by Peter Eisentraut <peter_e@gmx.net>. * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.297 2005/11/03 17:11:39 alvherre Exp $ + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.298 2005/11/04 22:18:26 petere Exp $ * *-------------------------------------------------------------------- */ @@ -466,7 +466,7 @@ static struct config_bool ConfigureNamesBool[] = {"constraint_exclusion", PGC_USERSET, QUERY_TUNING_OTHER, gettext_noop("Enables the planner to use constraints to limit table access."), gettext_noop("This prevents table access if the table constraints " - "guarantee that table access is necessary.") + "guarantee that table access is not necessary.") }, &constraint_exclusion, false, NULL, NULL |