Re: [GENERAL] cached row type not invalidated after DDL change

2015-06-12 Thread Adrian Klaver
On 06/12/2015 09:24 AM, Manuel Kniep wrote: using a row type variable in a trigger function results in an error after changing the table structure running the following sequence of statements (https://gist.github.com/rapimo/accac676f7c8e3557a4d) CREATE TABLE foo( id integer ); CREATE FUNCTI

[GENERAL] cached row type not invalidated after DDL change

2015-06-12 Thread Manuel Kniep
using a row type variable in a trigger function results in an error after changing the table structure running the following sequence of statements (https://gist.github.com/rapimo/accac676f7c8e3557a4d) CREATE TABLE foo(   id integer ); CREATE FUNCTION foo_trigger() RETURNS trigger LANGUAGE plp