From 6eb9c5a5657d1fe77b55cc261450f3538d35a94d Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:19:15 +0200 Subject: Adding upstream version 13.4. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/catalog-pg-tablespace.html | 42 ++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 doc/src/sgml/html/catalog-pg-tablespace.html (limited to 'doc/src/sgml/html/catalog-pg-tablespace.html') diff --git a/doc/src/sgml/html/catalog-pg-tablespace.html b/doc/src/sgml/html/catalog-pg-tablespace.html new file mode 100644 index 0000000..2befc26 --- /dev/null +++ b/doc/src/sgml/html/catalog-pg-tablespace.html @@ -0,0 +1,42 @@ + +51.54. pg_tablespace

51.54. pg_tablespace

+ The catalog pg_tablespace stores information + about the available tablespaces. Tables can be placed in particular + tablespaces to aid administration of disk layout. +

+ Unlike most system catalogs, pg_tablespace + is shared across all databases of a cluster: there is only one + copy of pg_tablespace per cluster, not + one per database. +

Table 51.54. pg_tablespace Columns

+ Column Type +

+

+ Description +

+ oid oid +

+

+ Row identifier +

+ spcname name +

+

+ Tablespace name +

+ spcowner oid + (references pg_authid.oid) +

+

+ Owner of the tablespace, usually the user who created it +

+ spcacl aclitem[] +

+

+ Access privileges; see Section 5.7 for details +

+ spcoptions text[] +

+

+ Tablespace-level options, as keyword=value strings +


\ No newline at end of file -- cgit v1.2.3