On Wed, Jan 12, 2005 at 11:46:53AM -0700, Edmund Bacon wrote:
> Perhaps you are forgetting to double up on your quote chars?
If that's the problem then 8.0's dollar quoting will simplify
the situation:
CREATE OR REPLACE FUNCTION foo(text) RETURNS text AS $$
SELECT replace($1, '"', '');
$$ LANGUAGE sql;
--
Michael Fuhr
http://www.fuhr.org/~mfuhr/