From a25b94c080a644a66983bbcf82a4e358aa47b7df Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Fri, 22 Mar 2002 21:34:44 +0000 Subject: Create the pg_namespace system catalog. Doesn't do much yet, but it's there and CREATE SCHEMA will make entries in it... --- doc/src/sgml/catalogs.sgml | 57 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 1 deletion(-) (limited to 'doc/src') diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index b72b0836179..5371da7ee7e 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1,6 +1,6 @@ @@ -111,6 +111,11 @@ asynchronous notification + + pg_namespace + namespaces (schemas) + + pg_opclass index access method operator classes @@ -1408,6 +1413,56 @@ + + pg_namespace + + + A namespace is the structure underlying SQL92 schemas: each namespace + can have a separate collection of relations, types, etc without name + conflicts. + + + + pg_namespace Columns + + + + + Name + Type + References + Description + + + + + + nspname + name + + Name of the namespace + + + + nspowner + int4 + pg_shadow.usesysid + Owner (creator) of the namespace + + + + nspacl + aclitem[] + + Access permissions + + + +
+ +
+ + pg_operator -- cgit v1.2.3