Re: INSERT RETURNING rule for joined view - Mailing list pgsql-general

From Tom Lane
Subject Re: INSERT RETURNING rule for joined view
Date
Msg-id 21167.1243881352@sss.pgh.pa.us
Whole thread Raw
In response to INSERT RETURNING rule for joined view  (Sava Chankov <sava.chankov@gmail.com>)
Responses Re: INSERT RETURNING rule for joined view
List pgsql-general
Sava Chankov <sava.chankov@gmail.com> writes:
> Is there a way to make RETURNING return all view columns?

Something like

CREATE RULE _insert AS ON INSERT TO j DO INSTEAD(
  INSERT INTO a (id,name) VALUES (NEW.id, NEW.name);
  INSERT INTO b (id,surname) VALUES (NEW.id,NEW.surname)
    RETURNING id, (SELECT name FROM a WHERE id = b.id) as name, surname
);

This only really works if the insert specifies "id" explicitly, which is
not amazingly desirable.  That's not the fault of the RETURNING though,
but of the repeat reference to NEW.id which might be a volatile
expression (ie, nextval()).  In some cases it's okay to hack around that
by using currval() the second time, but that just trades off one
unexpected behavior for a different one ...

            regards, tom lane

pgsql-general by date:

Previous
From: Douglas Alan
Date:
Subject: How can I manually alter the statistics for a column?
Next
From: björn lundin
Date:
Subject: Re: newbie table design question