Re: Thoughts about updateable views - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Thoughts about updateable views
Date
Msg-id 4826.1103734496@sss.pgh.pa.us
Whole thread Raw
In response to Re: Thoughts about updateable views  (Richard Huxton <dev@archonet.com>)
Responses Re: Thoughts about updateable views
List pgsql-hackers
Richard Huxton <dev@archonet.com> writes:
> Yann Michel wrote:
>> I think you mean UNION ALL, i.e. the set addition, don't you?

> Not if you can identify the underlying table(s) and key(s). If the UNION 
> hides that information, then you are correct.

If a unique key of the underlying table is included in the UNION data, then
there can't be any duplicate rows and so the UNION really reduces to
UNION ALL.  However, I'm unconvinced that there are any cases like this
that are interesting in practice.  Consider
CREATE TABLE a (id int primary key, ...);
CREATE TABLE b (id int primary key, ...);
CREATE VIEW v AS SELECT * FROM a UNION SELECT * FROM b;

If a and b have disjoint key sets then the UNION is theoretically
updatable, but there is no way to specify such a constraint and thus
no way for the system to know that the UNION is updatable.
        regards, tom lane


pgsql-hackers by date:

Previous
From: Bernd Helmle
Date:
Subject: Re: Thoughts about updateable views
Next
From: Richard Huxton
Date:
Subject: Re: Thoughts about updateable views