Re: rolconfig and datconfig - Mailing list pgsql-admin

From Laurenz Albe
Subject Re: rolconfig and datconfig
Date
Msg-id 86696f3edd3a6e87f7fdc6182c0078921e29d8fa.camel@cybertec.at
Whole thread Raw
In response to rolconfig and datconfig  (Fabrice Chapuis <fabrice636861@gmail.com>)
List pgsql-admin
On Thu, 2025-02-13 at 09:11 +0100, Fabrice Chapuis wrote:
> il we need to consult the options for a specific role, we can find that
> information in the pg_roles table. But options for a database is not in
> pg_database, there is no field datconfig. Is there a reason for that?
>
> postgres [591176]=# \d pg_roles
>                           View "pg_catalog.pg_roles"
> ┌────────────────┬──────────────────────────┬───────────┬──────────┬─────────┐
> │     Column     │           Type           │ Collation │ Nullable │ Default │
> ├────────────────┼──────────────────────────┼───────────┼──────────┼─────────┤
>   ...
> │ => rolconfig      │ text[]                   │ C         │          │         │
>   ...
> └────────────────┴──────────────────────────┴───────────┴──────────┴─────────┘

The reason is that "pg_roles" is not a table, but a view.
The table that stores the roles is "pg_authid", and that catalog doesn't
have a "rolconfig" column either.

The parameters set for roles and/or databases are stored in "pg_db_role_setting",
and the values in "pg_roles.rolconfig" are taken from there.

Look at "\d+ pg_roles" to see for yourself.

Yours,
Laurenz Albe

--

*E-Mail Disclaimer*
Der Inhalt dieser E-Mail ist ausschliesslich fuer den
bezeichneten Adressaten bestimmt. Wenn Sie nicht der vorgesehene Adressat
dieser E-Mail oder dessen Vertreter sein sollten, so beachten Sie bitte,
dass jede Form der Kenntnisnahme, Veroeffentlichung, Vervielfaeltigung oder
Weitergabe des Inhalts dieser E-Mail unzulaessig ist. Wir bitten Sie, sich
in diesem Fall mit dem Absender der E-Mail in Verbindung zu setzen.

*CONFIDENTIALITY NOTICE & DISCLAIMER
*This message and any attachment are
confidential and may be privileged or otherwise protected from disclosure
and solely for the use of the person(s) or entity to whom it is intended.
If you have received this message in error and are not the intended
recipient, please notify the sender immediately and delete this message and
any attachment from your system. If you are not the intended recipient, be
advised that any use of this message is prohibited and may be unlawful, and
you must not copy this message or attachment or disclose the contents to
any other person.

pgsql-admin by date:

Previous
From: Fabrice Chapuis
Date:
Subject: rolconfig and datconfig
Next
From: Álvaro Herrera
Date:
Subject: Re: rolconfig and datconfig