From 5e45211a64149b3c659b90ff2de6fa982a5a93ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:17:33 +0200 Subject: Adding upstream version 15.5. 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..eb13f76 --- /dev/null +++ b/doc/src/sgml/html/catalog-pg-tablespace.html @@ -0,0 +1,42 @@ + +53.56. pg_tablespace

53.56. 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 53.56. 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