mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-06 15:24:56 +08:00
In documentation example, use concat_values() instead of concat()
because concat() is a built-in function. Erik Rijkers
This commit is contained in:
parent
f196738534
commit
732808c087
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user