Re: [NOVICE] Drop or disable or bypass "_return" rule on select on a view.

Поиск
Список
Период
Сортировка
От Merlin Moncure
Тема Re: [NOVICE] Drop or disable or bypass "_return" rule on select on a view.
Дата
Msg-id CAHyXU0wPyZjvyekSCf2s2AsefHFfwXY_HkNt_PnSM4jepF5CmQ@mail.gmail.com
обсуждение исходный текст
Ответ на Re: [NOVICE] Drop or disable or bypass "_return" rule on select on a view.  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-sql
On Thu, May 28, 2015 at 8:53 AM, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Shashwat Arghode <shashwatarghode@gmail.com> writes:
>> I am using postgres 9.3.4 and have an on_select rule "_return" on a view.
>> I want to drop or disable or bypass that rule.
>> Is there any way it can be done without dropping the view??
>
> No.  I don't exactly see the point, either --- what do you imagine a view
> without an ON SELECT rule would be good for?
>
> Perhaps what you want is to replace the view with CREATE OR REPLACE VIEW,
> which is basically equivalent to updating its ON SELECT rule.  But simply
> dropping the rule without immediately replacing it would leave the view
> nonfunctional.

Yeah.  If disabling the view is truly what's desired, and disabling a
view is defined as returning no data, you'd want to change:

CREATE OR REPLACE VIEW v AS SELECT ....

with

CREATE OR REPLACE VIEW v AS SELECT .... LIMIT 0;

Another option of course would be to drop it, but that would require
dealing with dependencies.   Still another option would be to have any
query against the view return an immediate exception:

CREATE OR REPLACE VIEW v AS SELECT .... WHERE (SELECT false FROM Error('test'));

Error() being a thin wrapper to plpgsql 'raise exception'.

merlin


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: [NOVICE] Drop or disable or bypass "_return" rule on select on a view.
Следующее
От: Shashwat Arghode
Дата:
Сообщение: Drop or disable or bypass "_return" rule on select on a view.