-- -- The Forums Package -- -- @author gwong@orchardlabs.com,ben@openforce.biz -- @creation-date 2002-05-16 -- -- This code is newly concocted by Ben, but with significant concepts and code -- lifted from Gilbert. Thanks Orchard Labs! -- -- -- This is the sortkey code -- create function forums_mess_insert_tr () returns opaque as ' declare v_max_child_sortkey forums_forums.max_child_sortkey%TYPE; v_parent_sortkey forums_messages.tree_sortkey%TYPE; begin if new.parent_id is null then -- get the max from the forum select max_child_sortkey into v_max_child_sortkey from forums_forums where forum_id = new.forum_id for update; v_parent_sortkey = null; else -- get the max child sortkey from parent -- grab the lock select tree_sortkey, max_child_sortkey into v_parent_sortkey, v_max_child_sortkey from forums_messages where message_id = new.parent_id for update; end if; -- increment the sortkey v_max_child_sortkey := tree_increment_key(v_max_child_sortkey); if new.parent_id is null then update forums_forums set max_child_sortkey = v_max_child_sortkey where forum_id = new.forum_id; else -- update the parent update forums_messages set max_child_sortkey = v_max_child_sortkey where message_id = new.parent_id; end if; -- generate the current sortkey new.tree_sortkey := v_parent_sortkey || v_max_child_sortkey; return new; end;' language 'plpgsql'; create trigger forums_mess_insert_tr before insert on forums_messages for each row execute procedure forums_mess_insert_tr ();