diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-15 22:33:21 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-15 22:33:21 +0000 |
commit | b66cbc1fa26aebfcfecbfff7c92d804d083af843 (patch) | |
tree | 086bad494173af5c710c4e48c38b7f190b45fb56 /doc/src | |
parent | c2f1e93aebf5178585d300d1153e23d66c24d51d (diff) | |
download | postgresql-b66cbc1fa26aebfcfecbfff7c92d804d083af843.tar.gz postgresql-b66cbc1fa26aebfcfecbfff7c92d804d083af843.zip |
Adjust rules for search_path so that pg_catalog is never implicitly
selected as the creation target namespace; to make that happen, you
must explicitly set search_path that way. This makes initdb a hair
more complex but seems like a good safety feature.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/runtime.sgml | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/doc/src/sgml/runtime.sgml b/doc/src/sgml/runtime.sgml index 2b0a4ad6349..babb95a4cd9 100644 --- a/doc/src/sgml/runtime.sgml +++ b/doc/src/sgml/runtime.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.112 2002/04/03 05:39:29 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/runtime.sgml,v 1.113 2002/04/15 22:33:20 tgl Exp $ --> <Chapter Id="runtime"> @@ -1231,10 +1231,8 @@ dynamic_library_path = '/usr/local/lib/postgresql:/home/my_project/lib:$libdir' <para> When objects are created without specifying a particular target namespace, they will be placed in the first namespace listed - in the search path, or in <literal>pg_catalog</> if the search - path list is empty. (Note that users do not normally have - permission to write in <literal>pg_catalog</>, so an empty search - path is not a very useful setting.) + in the search path. An error is reported if the search path is + empty. </para> <para> |