diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-23 21:05:48 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-07-23 21:05:48 +0000 |
commit | d007a95055b9b649b74b5d25aa4d2b46f3eca21c (patch) | |
tree | e726c049f96af578181432ae4da176cf3cbcb970 /src/bin/psql/tab-complete.c | |
parent | 9af9d674c61ca1c2e26d7a9295d5b1bcc8cabb60 (diff) | |
download | postgresql-d007a95055b9b649b74b5d25aa4d2b46f3eca21c.tar.gz postgresql-d007a95055b9b649b74b5d25aa4d2b46f3eca21c.zip |
Simple constraint exclusion. For now, only child tables of inheritance
scans are candidates for exclusion; this should be fixed eventually.
Simon Riggs, with some help from Tom Lane.
Diffstat (limited to 'src/bin/psql/tab-complete.c')
-rw-r--r-- | src/bin/psql/tab-complete.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/tab-complete.c b/src/bin/psql/tab-complete.c index 648ccadd4f6..64737ac007d 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3,7 +3,7 @@ * * Copyright (c) 2000-2005, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.133 2005/06/22 21:14:30 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/tab-complete.c,v 1.134 2005/07/23 21:05:47 tgl Exp $ */ /*---------------------------------------------------------------------- @@ -540,6 +540,7 @@ psql_completion(char *text, int start, int end) "dynamic_library_path", "effective_cache_size", "enable_bitmapscan", + "enable_constraint_exclusion", "enable_hashagg", "enable_hashjoin", "enable_indexscan", |