Re: pl/pgsql RECORD data type, how to access to the values

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: pl/pgsql RECORD data type, how to access to the values
Дата
Msg-id 47F90ED0.3030008@postnewspapers.com.au
обсуждение исходный текст
Ответ на Re: pl/pgsql RECORD data type, how to access to the values  ("Guillaume Bog" <guibog@gmail.com>)
Ответы Re: pl/pgsql RECORD data type, how to access to the values
Список pgsql-general
Guillaume Bog wrote:

> I want a table to be "read-only", so I raise exceptions with a before
> trigger on update, insert and delete. It works well.
>
> This read-only table is modified (delete + insert) by a trigger
> function set on another table, but this second trigger calls the first
> and I can modify my read-only table. I'd like my "read-only" trigger
> to be aware that the modification call on the read-only table comes
> from the second trigger. Is it possible?

Quick question: Why not make the read only table a view of the writeable
table, instead of using triggers to copy data?

If your data doesn't fit that use or that'd be inefficient, can you use
access privileges rather than a trigger to limit changes to the read
only table? I find that limiting a user to SELECT priveleges on a table
and using a SECURITY DEFINER trigger or other function to perform
certain restricted priveleged operations on the table to be very useful.
In your case you might be able to restrict users to SELECT priveleges on
your read only table, drop the "read only" restriction trigger, and make
the updating trigger SECURITY DEFINER (after carefully thinking about
possible risks and issues).

Why the separate read only table, anyway? A materialized view / summary
table? Something to do with user access control ?

--
Craig Ringer

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

Предыдущее
От: Craig Ringer
Дата:
Сообщение: Re: slow pgsql tables - need to vacuum?
Следующее
От: Gregory Stark
Дата:
Сообщение: Re: slow pgsql tables - need to vacuum?