Re: [BUGS] Simple recursion function on plpgsql - Postgresql 7.1

2001-07-04 Thread Tom Lane
Curious. I can reproduce the problem in REL7_1_STABLE, but not in current CVS tip. I suspect that the problem was repaired in Jan's sizable commit of 2001-05-21 10:22 ... but I don't immediately see where the bug fix is; most of that commit is adding features or closing memory leaks AFAICS. Jan

[BUGS] Simple recursion function on plpgsql - Postgresql 7.1

2001-07-04 Thread Vadim I. Passynkov
Hi All Simple task: calculate number children for parent 1 1 /|\ 7 2 8 / \ 3 4 / \ 5 6 DROP TABLE test1; CREATE TABLE test1 ( child int4, par