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/backend/utils/misc/postgresql.conf.sample | |
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/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index a40b6ce7fac..01f55682b88 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -191,6 +191,7 @@ # Misc # #dynamic_library_path = '$libdir' +#search_path = '$user,public' #australian_timezones = false #authentication_timeout = 60 # min 1, max 600 #deadlock_timeout = 1000 |