Re: [HACKERS] 7.4 beta1 plpgsql regression

2003-08-14 Thread Rod Taylor
I think I have a catalog corruption (self inflicted I'm sure). A dump / reload of the database corrects the issue here as well. On Thu, 2003-08-14 at 08:33, Tom Lane wrote: > Rod Taylor <[EMAIL PROTECTED]> writes: > > The below function works in 7.3 (returns nothing, but no errors). > > > rbttes

[HACKERS] 7.4 beta1 plpgsql regression

2003-08-14 Thread Rod Taylor
The below function works in 7.3 (returns nothing, but no errors). rbttest=# begin; BEGIN rbttest=# create or replace function service.test(integer) rbttest-# returns setof service.service rbttest-# as ' rbttest'# declare rbttest'# v_service service.service%rowtype; rbttest'# rbttest'# begin rb