Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6fbf442

Browse files
committed
Update 'translate' function description. translate does character set
mapping, not character strings.
1 parent a54f0e8 commit 6fbf442

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/include/catalog/pg_proc.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
10-
* $Id: pg_proc.h,v 1.198 2001/07/16 05:06:59 tgl Exp $
10+
* $Id: pg_proc.h,v 1.199 2001/07/31 17:09:30 momjian Exp $
1111
*
1212
* NOTES
1313
* The script catalog/genbki.sh reads this file and generates .bki
@@ -2101,7 +2101,7 @@ DESCR("right-pad string to length");
21012101
DATA(insert OID = 877 ( substr PGUID 12 f t t t 3 f 25 "25 23 23" 100 0 0 100 text_substr - ));
21022102
DESCR("return portion of string");
21032103
DATA(insert OID = 878 ( translate PGUID 12 f t t t 3 f 25 "25 25 25" 100 0 0 100 translate - ));
2104-
DESCR("modify string by substring replacement");
2104+
DESCR("map a set of character appearing in string");
21052105
DATA(insert OID = 879 ( lpad PGUID 14 f t t t 2 f 25 "25 23" 100 0 0 100 "select lpad($1, $2, \' \')" - ));
21062106
DESCR("left-pad string to length");
21072107
DATA(insert OID = 880 ( rpad PGUID 14 f t t t 2 f 25 "25 23" 100 0 0 100 "select rpad($1, $2, \' \')" - ));

0 commit comments

Comments
 (0)