pg_authid
pg_authid#
The pg_authid
table contains information about database authorization identifiers (roles). A role subsumes the concepts of users and groups. A user is a role with the rolcanlogin
flag set. Any role (with or without rolcanlogin
) may have other roles as members. See pg_auth_members.
Since this catalog contains passwords, it must not be publicly readable. pg_roles is a publicly readable view on pg_authid
that blanks out the password field.
Because user identities are system-wide, pg_authid
is shared across all databases in a Oushu Database system: there is only one copy of pg_authid
per system, not one per database.
column |
type |
references |
description |
---|---|---|---|
|
oid |
Row identifier |
|
|
name |
Role name |
|
|
boolean |
Role has superuser privileges |
|
|
boolean |
Role automatically inherits privileges of roles it is a member of |
|
|
boolean |
Role may create more roles |
|
|
boolean |
Role may create databases |
|
|
boolean |
Role may log in. That is, this role can be given as the initial session authorization identifier |
|
|
boolean |
Role is a replication role. That is, this role can initiate streaming replication and set/unset the system backup mode using pg_start_backup and pg_stop_backup. |
|
|
boolean |
Roles bypasses every row-level security policy. |
|
|
int4 |
For roles that can log in, this sets maximum number of concurrent connections this role can make. -1 means no limit |
|
|
text |
Password (possibly encrypted); NULL if none. If the password is encrypted, this column will begin with the string md5 followed by a 32-character hexadecimal MD5 hash. The MD5 hash will be the user’s password concatenated to their user name. For example, if user joe has password xyzzy, Greenplum Database will store the md5 hash of xyzzyjoe. Greenplum assumes that a password that does not follow that format is unencrypted. |
|
|
timestamptz |
Password expiry time (only used for password authentication); NULL if no expiration |
|
|
oid |
Object ID of the associated resource queue ID in pg_resqueue |
|
|
boolean |
Privilege to create read external tables with the gpfdist or gpfdists protocol |
|
|
boolean |
Privilege to create read external tables with the http protocol |
|
|
boolean |
Privilege to create write external tables with the gpfdist or gpfdists protocol |
|
|
oid |
Object ID of the associated resource group ID in pg_resgroup |