diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-01 03:34:27 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-01 03:34:27 +0000 |
| commit | 838fe25a9532ab2e9b9b7517fec94e804cf3da81 (patch) | |
| tree | 5d71f950bc362497a57e4a5a375907a41325aec4 /src/bin/psql/tab-complete.c | |
| parent | 6df395f63a3f4be10b8f5b81dea1b426021ce5ce (diff) | |
Create a new GUC variable search_path to control the namespace search
path. The default behavior if no per-user schemas are created is that
all users share a 'public' namespace, thus providing behavior backwards
compatible with 7.2 and earlier releases. Probably the semantics and
default setting will need to be fine-tuned, but this is a start.
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 003ec9fe336..f25a45ef622 100644 --- a/src/bin/psql/tab-complete.c +++ b/src/bin/psql/tab-complete.c @@ -3,7 +3,7 @@ * * Copyright 2000 by PostgreSQL Global Development Group * - * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.46 2002/03/24 04:31:08 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/tab-complete.c,v 1.47 2002/04/01 03:34:27 tgl Exp $ */ /*---------------------------------------------------------------------- @@ -267,6 +267,7 @@ psql_completion(char *text, int start, int end) "geqo_selection_bias", "default_transaction_isolation", + "search_path", NULL }; |
