Osvaldo,
CREATE OR REPLACE FUNCTION wordwrap83(line text, linelen integer) RETURNS SETOF text as $$ select * from wordwrap($1,$2); $$ LANGUAGE sql;
Thank you. It works.
select * FROM wordwrap83('fdgdf',10) If you have a "RETURN SETOF" function you must call it with "SELECT * FROM your_function();" not "SELECT your_function()"
select wordwrap83('fdgdf',10) works in 8.3 and in 8.4 Andrus. -- Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general