diff options
author | Bruce Momjian | 2003-02-03 15:57:03 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-02-03 15:57:03 +0000 |
commit | caa72ad57fbb60813c9934f7a42a44e7da426bd4 (patch) | |
tree | 3b9e63076fa488b0c666a5b3d995af095577d8e2 | |
parent | 0f36c544d901db4141eb4f2a7446c5f5e15590ad (diff) |
Add mention of CURRENT_SCHEMA for object creation.REL7_3_2
-rw-r--r-- | doc/src/sgml/ref/create_schema.sgml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_schema.sgml b/doc/src/sgml/ref/create_schema.sgml index 067d6c8d2cf..fc802d53701 100644 --- a/doc/src/sgml/ref/create_schema.sgml +++ b/doc/src/sgml/ref/create_schema.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_schema.sgml,v 1.3 2002/09/21 18:32:54 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_schema.sgml,v 1.3.2.1 2003/02/03 15:57:03 momjian Exp $ PostgreSQL documentation --> @@ -115,7 +115,9 @@ ERROR: namespace "<replaceable class="parameter">schemaname</replaceable>" alre whose names may duplicate those of other objects existing in other schemas. Named objects are accessed either by <quote>qualifying</> their names with the schema name as a prefix, or by setting a search - path that includes the desired schema(s). + path that includes the desired schema(s). Unqualified objects are + created in the current schema (the one at the front of the search path; + see <literal>CURRENT_SCHEMA()</>). </para> <para> |