xfunc.sgml.diff

application/octet-stream

Filename: xfunc.sgml.diff
Type: application/octet-stream
Part: 0
Message: Re: patch (for 9.1) string functions ( correct patch attached )

Patch

Same data as JSON: GET /api/v1/attachments/:id/patch the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes. API reference →
Format: unified
File+
xfunc.sgml 4 4
--- 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)
 </screen>