Обсуждение: Select Instead on a table

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

Select Instead on a table

От
Markus Schaber
Дата:
Hello,

[I hope this is no FAQ, but I did neither find anything about it in the
PostgreSQL FAQ, nor get any hit on RULE or INSTEAD on the mailing list
archive search¹...]

Is it possible to create a ON SELECT DO INSTEAD rule on a table?

All of my tries to do so failed by either complaining that the table is
not empty, or converting the empty table into a view, thus making
insert/update/delete impossible.

What we need is basically a table "outer" where one column is computed
via a subselect over another table "inner", something like

SELECT id, some, more, rows,     ( SELECT aggregate(inner.innerrow) AS collect        WHERE inner.id=outer.id) as INNER
 FROM outer; 

(In reality, the inner query is a little more complicated because of
some weird ordering and limit stuff, but this is the basic idea)

Of yourse, we could (and currently do) do this via a View, but this has
two disadvantages:

- We have an extra relation floating around (outer and outer_view)

- We need to create and maintain INSERT/UPDATE/DELETE rules for outer.

We cannot change the application code that issues the queries, this is
the reason for dealing with rules and views in this case.

Thanks,
Markus Schaber

Footnotes:
¹ The latter was rather surprising to me, may be a defect in the mailing  list archive search?

--
markus schaber | dipl. informatiker
logi-track ag | rennweg 14-16 | ch 8001 zürich
phone +41-43-888 62 52 | fax +41-43-888 62 53
mailto:schabios@logi-track.com | www.logi-track.com


Re: Select Instead on a table

От
Tom Lane
Дата:
Markus Schaber <schabios@logi-track.com> writes:
> Is it possible to create a ON SELECT DO INSTEAD rule on a table?

Not unless you want it to become a view.
        regards, tom lane


Re: Select Instead on a table

От
Markus Schaber
Дата:
Hi, Tom,

On Thu, 28 Oct 2004 10:22:47 -0400
Tom Lane <tgl@sss.pgh.pa.us> wrote:

> > Is it possible to create a ON SELECT DO INSTEAD rule on a table?
>
> Not unless you want it to become a view.

That's what I suspected, after scanning the docs.

Thanks,
Markus

--
markus schaber | dipl. informatiker
logi-track ag | rennweg 14-16 | ch 8001 zürich
phone +41-43-888 62 52 | fax +41-43-888 62 53
mailto:schabios@logi-track.com | www.logi-track.com