Martin Brommer <[EMAIL PROTECTED]> writes: > How do I call a function that takes a rowtype for an argument as in: > CREATE FUNCTION myfunc(mytablename) RETURNS INT AS '
SELECT myfunc(mytablename.*) FROM mytablename; This also works at the moment, but seems less clear to me: SELECT myfunc(mytablename) FROM mytablename; regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 8: explain analyze is your friend