Fix logical error in option description.
authorPeter Eisentraut <peter_e@gmx.net>
Fri, 4 Nov 2005 22:18:26 +0000 (22:18 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Fri, 4 Nov 2005 22:18:26 +0000 (22:18 +0000)
src/backend/utils/misc/guc.c

index 791b925ee28dd29715d3d187270ec4baf65ff98b..eb087e67fe7b6e49180bf92ae8c069acf09dbe40 100644 (file)
@@ -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