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/view-pg-roles.html | 85 ++++++++++++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 doc/src/sgml/html/view-pg-roles.html (limited to 'doc/src/sgml/html/view-pg-roles.html') diff --git a/doc/src/sgml/html/view-pg-roles.html b/doc/src/sgml/html/view-pg-roles.html new file mode 100644 index 0000000..4fede12 --- /dev/null +++ b/doc/src/sgml/html/view-pg-roles.html @@ -0,0 +1,85 @@ + +54.20. pg_roles

54.20. pg_roles

+ The view pg_roles provides access to + information about database roles. This is simply a publicly + readable view of + pg_authid + that blanks out the password field. +

Table 54.20. pg_roles Columns

+ Column Type +

+

+ Description +

+ rolname name +

+

+ Role name +

+ rolsuper bool +

+

+ Role has superuser privileges +

+ rolinherit bool +

+

+ Role automatically inherits privileges of roles it is a + member of +

+ rolcreaterole bool +

+

+ Role can create more roles +

+ rolcreatedb bool +

+

+ Role can create databases +

+ rolcanlogin bool +

+

+ Role can log in. That is, this role can be given as the initial + session authorization identifier +

+ rolreplication bool +

+

+ Role is a replication role. A replication role can initiate replication + connections and create and drop replication slots. +

+ rolconnlimit int4 +

+

+ For roles that can log in, this sets maximum number of concurrent + connections this role can make. -1 means no limit. +

+ rolpassword text +

+

+ Not the password (always reads as ********) +

+ rolvaliduntil timestamptz +

+

+ Password expiry time (only used for password authentication); + null if no expiration +

+ rolbypassrls bool +

+

+ Role bypasses every row-level security policy, see + Section 5.8 for more information. +

+ rolconfig text[] +

+

+ Role-specific defaults for run-time configuration variables +

+ oid oid + (references pg_authid.oid) +

+

+ ID of role +


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