OSDN Git Service

Create a new GUC variable search_path to control the namespace search
authorTom Lane <tgl@sss.pgh.pa.us>
Mon, 1 Apr 2002 03:34:27 +0000 (03:34 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Mon, 1 Apr 2002 03:34:27 +0000 (03:34 +0000)
commit838fe25a9532ab2e9b9b7517fec94e804cf3da81
tree5d71f950bc362497a57e4a5a375907a41325aec4
parent6df395f63a3f4be10b8f5b81dea1b426021ce5ce
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.
13 files changed:
doc/src/sgml/runtime.sgml
src/backend/access/transam/xact.c
src/backend/catalog/namespace.c
src/backend/parser/gram.y
src/backend/utils/adt/varlena.c
src/backend/utils/init/postinit.c
src/backend/utils/misc/guc.c
src/backend/utils/misc/postgresql.conf.sample
src/bin/psql/tab-complete.c
src/include/access/xact.h
src/include/catalog/namespace.h
src/include/catalog/pg_namespace.h
src/include/utils/builtins.h