Обсуждение: [DOCS] wrong column header text in grant doc page

Поиск
Список
Период
Сортировка

[DOCS] wrong column header text in grant doc page

От
Dmitriy Olshevskiy
Дата:
hello!
please, check the column header text " Column access privileges"
in the GRANT doc page. I think there must be "Column privileges",
as in the psql \dp output, src/bin/psql/po/*.po files and
regression tests outputs.

-- 
Dmitriy Olshevskiy

Re: [DOCS] wrong column header text in grant doc page

От
Stephen Frost
Дата:
Dmitriy,

* Dmitriy Olshevskiy (olshevskiy87@bk.ru) wrote:
> please, check the column header text " Column access privileges"
> in the GRANT doc
> <https://www.postgresql.org/docs/9.6/static/sql-grant.html>page. I
> think there must be "Column privileges",

Ah, yes, though the actual \dp mytable output would also include
'Policies' (which is why 'access' was removed, in fact), as this:

=> \dp mytable
                                  Access privileges
 Schema |  Name   | Type  |   Access privileges   |   Column privileges   | Policies
--------+---------+-------+-----------------------+-----------------------+----------
 public | mytable | table | miriam=arwdDxt/miriam+| col1:                +|
        |         |       | =r/miriam            +|   miriam_rw=rw/miriam |
        |         |       | admin=arw/miriam      |                       |
(1 row)

I'll update the docs and back-patch this to 9.5, where RLS was added.

> as in the psql \dp output, src/bin/psql/po/*.po files and
> regression tests outputs.

The po files should be updated by the translation team.

Thanks!

Stephen

Вложения