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
078633e7
Commit
078633e7
authored
Mar 15, 1997
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-oid the oracle_compat functions
Add new "overloaded" oracle_compat functions (see man oracle_compat)
parent
9e4798ea
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
10 deletions
+15
-10
src/include/catalog/pg_proc.h
src/include/catalog/pg_proc.h
+15
-10
No files found.
src/include/catalog/pg_proc.h
View file @
078633e7
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*
*
* Copyright (c) 1994, Regents of the University of California
* Copyright (c) 1994, Regents of the University of California
*
*
* $Id: pg_proc.h,v 1.
9 1997/03/12 21:27:28
scrappy Exp $
* $Id: pg_proc.h,v 1.
10 1997/03/15 06:13:12
scrappy 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
...
@@ -768,15 +768,20 @@ DATA(insert OID = 1310 ( timestample PGUID 11 f t f 2 f 16 "1296 1296" 10
...
@@ -768,15 +768,20 @@ DATA(insert OID = 1310 ( timestample PGUID 11 f t f 2 f 16 "1296 1296" 10
DATA
(
insert
OID
=
1311
(
timestampge
PGUID
11
f
t
f
2
f
16
"1296 1296"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1311
(
timestampge
PGUID
11
f
t
f
2
f
16
"1296 1296"
100
0
0
100
foo
bar
));
/* Oracle Compatibility Related Functions - By Edmund Mergl <E.Mergl@bawue.de> */
/* Oracle Compatibility Related Functions - By Edmund Mergl <E.Mergl@bawue.de> */
DATA
(
insert
OID
=
1260
(
lower
PGUID
11
f
t
f
1
f
25
"25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
870
(
LOWER
PGUID
11
f
t
f
1
f
25
"25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1261
(
upper
PGUID
11
f
t
f
1
f
25
"25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
871
(
UPPER
PGUID
11
f
t
f
1
f
25
"25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1262
(
initcap
PGUID
11
f
t
f
1
f
25
"25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
872
(
INITCAP
PGUID
11
f
t
f
1
f
25
"25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1263
(
lpad
PGUID
11
f
t
f
3
f
25
"25 23 25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
873
(
LPAD
PGUID
11
f
t
f
3
f
25
"25 23 25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1264
(
rpad
PGUID
11
f
t
f
3
f
25
"25 23 25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
874
(
RPAD
PGUID
11
f
t
f
3
f
25
"25 23 25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1265
(
ltrim
PGUID
11
f
t
f
2
f
25
"25 25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
875
(
LTRIM
PGUID
11
f
t
f
2
f
25
"25 25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1266
(
rtrim
PGUID
11
f
t
f
2
f
25
"25 25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
876
(
RTRIM
PGUID
11
f
t
f
2
f
25
"25 25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1267
(
substr
PGUID
11
f
t
f
3
f
25
"25 23 23"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
877
(
SUBSTR
PGUID
11
f
t
f
3
f
25
"25 23 23"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
1268
(
translate
PGUID
11
f
t
f
3
f
25
"25 18 18"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
878
(
TRANSLATE
PGUID
11
f
t
f
3
f
25
"25 18 18"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
879
(
lpad
PGUID
11
f
t
f
2
f
25
"25 23"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
880
(
rpad
PGUID
11
f
t
f
2
f
25
"25 23"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
881
(
ltrim
PGUID
11
f
t
f
1
f
25
"25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
882
(
rtrim
PGUID
11
f
t
f
1
f
25
"25"
100
0
0
100
foo
bar
));
DATA
(
insert
OID
=
883
(
substr
PGUID
11
f
t
f
2
f
25
"25 23"
100
0
0
100
foo
bar
));
/*
/*
* prototypes for functions pg_proc.c
* prototypes for functions pg_proc.c
...
...
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