aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/src/sgml/xfunc.sgml8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml
index 4f2c23fab7a..c65f8522b37 100644
--- a/doc/src/sgml/xfunc.sgml
+++ b/doc/src/sgml/xfunc.sgml
@@ -1088,13 +1088,13 @@ SELECT anyleast('abc'::text, 'def');
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)
</screen>