role attributes are missing from this page

Поиск
Список
Период
Сортировка
От PG Doc comments form
Тема role attributes are missing from this page
Дата
Msg-id 164978692927.1276557.9862487759615827386@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: role attributes are missing from this page  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-docs
The following documentation comment has been logged on the website:

Page: https://www.postgresql.org/docs/14/role-attributes.html
Description:

Issue #1:
"old" is a keyword, but I cannot query the old column explicitely with
surrounding quotes.
SELECT "old" FROM pg_roles;

Issue #2:
You do not have ALL role attributes documented on this page.  Please add and
document the missing role attributes.
https://www.postgresql.org/docs/current/role-attributes.html

This is a list of all role attributes:
SELECT

rolname,rolsuper,rolinherit,rolcreaterole,rolcreatedb,rolcanlogin,rolreplication,rolconnlimit,rolpassword,rolvaliduntil,rolbypassrls,rolconfig,"old"

FROM pg_roles;

These role attributes are documented:
SELECT
rolcanlogin,rolsuper,rolcreatedb,rolcreaterole,rolreplication,rolpassword
FROM pg_roles;

These role attributes are NOT documented:
SELECT
rolname,rolsuper,rolinherit,rolconnlimit,,rolvaliduntil,rolbypassrls,rolconfig,"old"
FROM pg_roles;
SELECT "old" FROM pg_roles;

В списке pgsql-docs по дате отправления:

Предыдущее
От: Sebastien Flaesch
Дата:
Сообщение: Re: Missing example for SAVEPOINT using the same savepoint name
Следующее
От: PG Doc comments form
Дата:
Сообщение: "GIN and GiST Index Types" page is about usage in full text search, but looks general purpose