aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2008-05-29 22:48:07 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2008-05-29 22:48:07 +0000
commitd11e301a15e0c28f5db7caa74ad192fec4351f2f (patch)
tree714d718dfd6d2decdc1abc677eea0581f2bef53f /src
parent02ac30540540b99c9d4b05bff23e04b9de6c50dc (diff)
downloadpostgresql-d11e301a15e0c28f5db7caa74ad192fec4351f2f.tar.gz
postgresql-d11e301a15e0c28f5db7caa74ad192fec4351f2f.zip
Improve the documentation comment for replace(). Robert Treat
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/pg_proc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h
index 5aa1db331cc..c4bc9f3e7e6 100644
--- a/src/include/catalog/pg_proc.h
+++ b/src/include/catalog/pg_proc.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.501 2008/05/27 00:13:09 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.502 2008/05/29 22:48:07 tgl Exp $
*
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
@@ -2202,7 +2202,7 @@ DESCR("return portion of string");
DATA(insert OID = 937 ( substring PGNSP PGUID 12 1 0 f f t f i 2 25 "25 23" _null_ _null_ _null_ text_substr_no_len - _null_ _null_ ));
DESCR("return portion of string");
DATA(insert OID = 2087 ( replace PGNSP PGUID 12 1 0 f f t f i 3 25 "25 25 25" _null_ _null_ _null_ replace_text - _null_ _null_ ));
-DESCR("replace all occurrences of old_substr with new_substr in string");
+DESCR("replace all occurrences in string of old_substr with new_substr");
DATA(insert OID = 2284 ( regexp_replace PGNSP PGUID 12 1 0 f f t f i 3 25 "25 25 25" _null_ _null_ _null_ textregexreplace_noopt - _null_ _null_ ));
DESCR("replace text using regexp");
DATA(insert OID = 2285 ( regexp_replace PGNSP PGUID 12 1 0 f f t f i 4 25 "25 25 25 25" _null_ _null_ _null_ textregexreplace - _null_ _null_ ));