pgsql-server: Fix thinko in recent patch to change temp-table

Поиск
Список
Период
Сортировка
От tgl@svr1.postgresql.org (Tom Lane)
Тема pgsql-server: Fix thinko in recent patch to change temp-table
Дата
Msg-id 20040528161716.365F7D1B1CF@svr1.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Log Message:
-----------
Fix thinko in recent patch to change temp-table permissions behavior:
this is an aclmask function and does not have the same return convention
as aclcheck functions.  Also adjust the behavior so that users without
CREATE TEMP permission still have USAGE permission on their session's
temp schema.  This allows privileged code to create a temp table and
make it accessible to code that's not got the same privilege.  (Since
the default permissions on a table are no-access, an explicit grant on
the table will still be needed; but I see no reason that the temp schema
itself should prohibit such access.)

Modified Files:
--------------
    pgsql-server/src/backend/catalog:
        aclchk.c (r1.100 -> r1.101)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/catalog/aclchk.c.diff?r1=1.100&r2=1.101)
        namespace.c (r1.65 -> r1.66)
        (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/catalog/namespace.c.diff?r1=1.65&r2=1.66)

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

Предыдущее
От: teodor@svr1.postgresql.org (Teodor Sigaev)
Дата:
Сообщение: pgsql-server: Stat function now can show statistics per weight of
Следующее
От: tgl@svr1.postgresql.org (Tom Lane)
Дата:
Сообщение: pgsql-server: Fix minor error in comment.