From a7f49252d2476cc5996b1e9dbb253cdc521fbb7f Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 22 Aug 2005 17:35:03 +0000 Subject: [PATCH] enable_constraint_exclusion => constraint_exclusion Also improve wording. --- doc/TODO | 4 +-- doc/src/FAQ/TODO.html | 4 +-- doc/src/sgml/runtime.sgml | 26 +++++++++---------- src/backend/optimizer/path/allpaths.c | 6 ++--- src/backend/utils/misc/guc.c | 13 +++++----- src/backend/utils/misc/postgresql.conf.sample | 2 +- src/include/optimizer/cost.h | 4 +-- src/test/regress/expected/rangefuncs.out | 5 ++-- 8 files changed, 31 insertions(+), 33 deletions(-) diff --git a/doc/TODO b/doc/TODO index 56aa3de6ec..6fb373cb41 100644 --- a/doc/TODO +++ b/doc/TODO @@ -385,7 +385,7 @@ SQL Commands * Add GUC to issue notice about queries that use unjoined tables * Allow EXPLAIN to identify tables that were skipped because of - enable_constraint_exclusion + constraint_exclusion * Allow EXPLAIN output to be more easily processed by scripts @@ -769,7 +769,7 @@ Indexes * Allow the creation of indexes with mixed ascending/descending specifiers * -Fix incorrect rtree results due to wrong assumptions about "over" operator semantics -* Allow enable_constraint_exclusion to work for UNIONs like it does for +* Allow constraint_exclusion to work for UNIONs like it does for inheritance, and allow it to work for UPDATE and DELETE queries diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index a2b70a78bc..edd160c3f7 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -355,7 +355,7 @@ first.

  • Add GUC to issue notice about queries that use unjoined tables
  • Allow EXPLAIN to identify tables that were skipped because of - enable_constraint_exclusion + constraint_exclusion
  • Allow EXPLAIN output to be more easily processed by scripts
  • CREATE