--- xfunc.sgml.orig 2010-07-29 22:18:27.000000000 +0200 +++ xfunc.sgml 2010-07-29 22:32:53.000000000 +0200 @@ -1067,13 +1067,13 @@ abc (1 row) -CREATE FUNCTION concat(text, VARIADIC anyarray) RETURNS text AS $$ +CREATE FUNCTION concat_values(text, VARIADIC anyarray) RETURNS text AS $$ SELECT array_to_string($2, $1); $$ LANGUAGE SQL; -SELECT concat('|', 1, 4, 2); - concat --------- +SELECT concat_values('|', 1, 4, 2); + concat_values +--------------- 1|4|2 (1 row)