Re: [GENERAL] Update rule on a view - what am I doing wrong

2013-01-22 Thread Leif Jensen
Hi Jasen. Thank you for your response (also thank you to Tom). I have now tried your suggestion, but I'm not sure how you have implemented the plpgsql function. When I create the function: CREATE update_rule_func( old record, new record ) AS ... I am told, that I cannot use record

Re: [GENERAL] Update rule on a view - what am I doing wrong

2013-01-22 Thread Marc Schablewski
Hi Leif, Am 22.01.2013 14:34, schrieb Leif Jensen: CREATE update_rule_func( old record, new record ) AS ... I am told, that I cannot use record for the parameter type. Could you please You should use your view instead of 'record' as parameter type, i.e. CREATE update_rule_func( old

Re: [GENERAL] Update rule on a view - what am I doing wrong

2013-01-22 Thread Leif Jensen
Hi Marc, Thanks a lot. That works fine. The names 'NEW' and 'OLD' works fine. Leif - Marc Schablewski m...@clickware.de wrote: Hi Leif, Am 22.01.2013 14:34, schrieb Leif Jensen: CREATE update_rule_func( old record, new record ) AS ... I am told, that I cannot use record

[GENERAL] Update rule on a view - what am I doing wrong

2013-01-18 Thread Leif Jensen
Hello, I have been fighting a problem with an update rule on a view. I have a view that combines two tables where the 'sub' table (scont) can have several rows per row in the 'top' table (icont). The view combines these to show only one record per row in the top table. To be able to

Re: [GENERAL] Update rule on a view - what am I doing wrong

2013-01-18 Thread Tom Lane
Leif Jensen l...@crysberg.dk writes: I have been fighting a problem with an update rule on a view. I have a view that combines two tables where the 'sub' table (scont) can have several rows per row in the 'top' table (icont). The view combines these to show only one record per row in the

Re: [GENERAL] Update rule on a view - what am I doing wrong

2013-01-18 Thread Jasen Betts
On 2013-01-18, Leif Jensen l...@crysberg.dk wrote: I have been fighting a problem with an update rule on a view. I have a view that combines two tables where the 'sub' table (scont) can have several rows per row in the 'top' table (icont). The view combines these to show only one record