diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-08-22 17:35:03 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-08-22 17:35:03 +0000 |
commit | a7f49252d2476cc5996b1e9dbb253cdc521fbb7f (patch) | |
tree | b12fba122b4fa746216da5235ffa62d84eb0d291 /src/backend/optimizer/path/allpaths.c | |
parent | 8ad3965a115bbd5fbd1bb2f3585c2e34d569af7d (diff) | |
download | postgresql-a7f49252d2476cc5996b1e9dbb253cdc521fbb7f.tar.gz postgresql-a7f49252d2476cc5996b1e9dbb253cdc521fbb7f.zip |
enable_constraint_exclusion => constraint_exclusion
Also improve wording.
Diffstat (limited to 'src/backend/optimizer/path/allpaths.c')
-rw-r--r-- | src/backend/optimizer/path/allpaths.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/optimizer/path/allpaths.c b/src/backend/optimizer/path/allpaths.c index 124534914f8..aa14deacd0c 100644 --- a/src/backend/optimizer/path/allpaths.c +++ b/src/backend/optimizer/path/allpaths.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.135 2005/07/23 21:05:46 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/optimizer/path/allpaths.c,v 1.136 2005/08/22 17:34:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -36,7 +36,7 @@ /* These parameters are set by GUC */ -bool enable_constraint_exclusion = false; +bool constraint_exclusion = false; bool enable_geqo = false; /* just in case GUC doesn't set it */ int geqo_threshold; @@ -318,7 +318,7 @@ set_inherited_rel_pathlist(PlannerInfo *root, RelOptInfo *rel, * exclusion, just ignore it. (We have to have converted the * baserestrictinfo Vars before we can make the test.) */ - if (enable_constraint_exclusion) + if (constraint_exclusion) { List *constraint_pred; |