|
10 | 10 | * Written by Peter Eisentraut <peter_e@gmx.net>.
|
11 | 11 | *
|
12 | 12 | * IDENTIFICATION
|
13 |
| - * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.298 2005/11/0422:18:26 petere Exp $ |
| 13 | + * $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.299 2005/11/0423:50:30 tgl Exp $ |
14 | 14 | *
|
15 | 15 | *--------------------------------------------------------------------
|
16 | 16 | */
|
@@ -464,9 +464,9 @@ static struct config_bool ConfigureNamesBool[] =
|
464 | 464 | },
|
465 | 465 | {
|
466 | 466 | {"constraint_exclusion",PGC_USERSET,QUERY_TUNING_OTHER,
|
467 |
| -gettext_noop("Enables the planner to use constraints tolimit table access."), |
468 |
| -gettext_noop("This preventstableaccess if the table constraints " |
469 |
| -"guarantee thattable access is not necessary.") |
| 467 | +gettext_noop("Enables the planner to use constraints tooptimize queries."), |
| 468 | +gettext_noop("Childtablescans will be skipped if their " |
| 469 | +"constraintsguarantee thatno rows match the query.") |
470 | 470 | },
|
471 | 471 | &constraint_exclusion,
|
472 | 472 | false,NULL,NULL
|
|