Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
d11e301a
Commit
d11e301a
authored
May 29, 2008
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve the documentation comment for replace(). Robert Treat
parent
02ac3054
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/include/catalog/pg_proc.h
src/include/catalog/pg_proc.h
+2
-2
No files found.
src/include/catalog/pg_proc.h
View file @
d11e301a
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.50
1 2008/05/27 00:13:09
tgl Exp $
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.50
2 2008/05/29 22:48:07
tgl Exp $
*
*
* NOTES
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
* The script catalog/genbki.sh reads this file and generates .bki
...
@@ -2202,7 +2202,7 @@ DESCR("return portion of string");
...
@@ -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_
));
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"
);
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_
));
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_
));
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"
);
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_
));
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_
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment