Justin Clift <[EMAIL PROTECTED]> writes: > PL/TCL does seem to provide that extra bit of info to functions/triggers > that I need, whereas PL/pgSQL doesn't.
It's not so much that there's more info available as that pltcl is better suited for working with dynamically generated queries. plpgsql is handicapped by the fact that it wants to precompute and cache query plans. That's a performance win when you're working with known tables but it really gets in the way for dynamically addressing columns. > I'd prefer not to have to load > further PL's into the database, but it's worth looking at anyway. Different needs, different tools. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 8: explain analyze is your friend