Re: information schema/aclexplode doesn't know about default privileges

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: information schema/aclexplode doesn't know about default privileges
Дата
Msg-id 19426.1322432990@sss.pgh.pa.us
обсуждение исходный текст
Ответ на information schema/aclexplode doesn't know about default privileges  (Peter Eisentraut <peter_e@gmx.net>)
Ответы Re: information schema/aclexplode doesn't know about default privileges  (Peter Eisentraut <peter_e@gmx.net>)
Список pgsql-hackers
Peter Eisentraut <peter_e@gmx.net> writes:
> This ought to show EXECUTE privilege on the new function, but it
> doesn't, because proacl is null, and nothing in the information schema
> handles that specially.

> I've pondered some ways to fix that.  One would be to add a variant of
> aclexplode() that takes a parameter telling which catalog the acl datum
> came from, and aclexplode() could then substitute the data received
> acldefault() for null values.  The other way would be to handle this
> entirely in the information schema SQL (either using some coalesce calls
> or perhaps a UNION).  But that would mean duplicating the knowledge of
> acldefault() in a second remote place.  So I'm thinking that handling it
> in aclexplode() would be better.

+1.  It would be a really bad idea for the acldefault() logic to be
duplicated someplace else, especially in SQL code where grepping for the
relevant macros wouldn't even find it.
        regards, tom lane


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

Предыдущее
От: Dimitri Fontaine
Дата:
Сообщение: Re: Prep object creation hooks, and related sepgsql updates
Следующее
От: Peter Eisentraut
Дата:
Сообщение: hiding variable-length fields from Form_pg_* structs