mirror of
https://github.com/postgres/postgres.git
synced 2025-07-31 22:04:40 +03:00
Improve description of constraint_exclusion variable.
This commit is contained in:
@ -10,7 +10,7 @@
|
|||||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.298 2005/11/04 22:18:26 petere Exp $
|
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.299 2005/11/04 23:50:30 tgl Exp $
|
||||||
*
|
*
|
||||||
*--------------------------------------------------------------------
|
*--------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -464,9 +464,9 @@ static struct config_bool ConfigureNamesBool[] =
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
{"constraint_exclusion", PGC_USERSET, QUERY_TUNING_OTHER,
|
{"constraint_exclusion", PGC_USERSET, QUERY_TUNING_OTHER,
|
||||||
gettext_noop("Enables the planner to use constraints to limit table access."),
|
gettext_noop("Enables the planner to use constraints to optimize queries."),
|
||||||
gettext_noop("This prevents table access if the table constraints "
|
gettext_noop("Child table scans will be skipped if their "
|
||||||
"guarantee that table access is not necessary.")
|
"constraints guarantee that no rows match the query.")
|
||||||
},
|
},
|
||||||
&constraint_exclusion,
|
&constraint_exclusion,
|
||||||
false, NULL, NULL
|
false, NULL, NULL
|
||||||
|
Reference in New Issue
Block a user