Improve description of constraint_exclusion variable.
authorTom Lane <[email protected]>
Fri, 4 Nov 2005 23:50:30 +0000 (23:50 +0000)
committerTom Lane <[email protected]>
Fri, 4 Nov 2005 23:50:30 +0000 (23:50 +0000)
src/backend/utils/misc/guc.c

index 4e3649d63d2441fd0c1b2829bc10ad20caa14237..ac484e3d20c75b9121ea118eec0dfa89e6549781 100644 (file)
@@ -464,9 +464,9 @@ 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 not necessary.")
+                       gettext_noop("Enables the planner to use constraints to optimize queries."),
+                       gettext_noop("Child table scans will be skipped if their "
+                                                "constraints guarantee that no rows match the query.")
                },
                &constraint_exclusion,
                false, NULL, NULL