Hello, I'm guessing the rows aren't really disappearing but how else to describe it?.... I have a trigger function that calls another function that is recursive. The recursive function creates a temp table and inserts rows into it. After the recursive function returns, the trigger function examines the temp table in order to validate the data in it. This all works perfectly well when the trigger function is written slightly modified as a regular function. However when run as a trigger, the temp table comes back empty. No errors are thrown. I have version 8.1.10. I've tried to include the relevant parts below. Any smarty out there see the problem? --Eric --========= --The trigger is like this: CREATE TRIGGER trigger_name AFTER INSERT OR UPDATE ON table_name FOR EACH ROW EXECUTE PROCEDURE trigger_func() --======== --The trigger_func() (abbreviated): begin perform recursive_func(new.id, 1, new.id); l_row_count := count(*) from tmp_ancestors; raise debug 'total rows=%', l_row_count; --LOG OUTPUT SAYS: "total rows=0" .... return new; end; ======== --The recursive_func(): begin .... insert into tmp_ancestors (blah, blah)... if logic then new_level := p_level + 1; perform recursive_func(id, new_level, id); end if; l_row_count := count(*) from tmp_ancestors; raise debug 'returning p_level=%; rows in tmp_ancestors=%', p_level, l_row_count; --LOG OUTPUT SHOWS EXPECTED INCREMENTING NUMBERS return; end -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general