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
1e7c7343
Commit
1e7c7343
authored
Oct 29, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add oid8neq.
parent
1145d007
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
3 deletions
+12
-3
src/backend/utils/adt/oid.c
src/backend/utils/adt/oid.c
+7
-1
src/include/catalog/pg_proc.h
src/include/catalog/pg_proc.h
+3
-1
src/include/utils/builtins.h
src/include/utils/builtins.h
+2
-1
No files found.
src/backend/utils/adt/oid.c
View file @
1e7c7343
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/utils/adt/oid.c,v 1.2
0 1998/09/22 20:28:10
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/utils/adt/oid.c,v 1.2
1 1998/10/29 18:07:03
momjian Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -126,6 +126,12 @@ oid8eq(Oid *arg1, Oid *arg2)
return
(
bool
)
(
memcmp
(
arg1
,
arg2
,
8
*
sizeof
(
Oid
))
==
0
);
}
bool
oid8ne
(
Oid
*
arg1
,
Oid
*
arg2
)
{
return
(
bool
)
(
memcmp
(
arg1
,
arg2
,
8
*
sizeof
(
Oid
))
!=
0
);
}
bool
oid8lt
(
Oid
*
arg1
,
Oid
*
arg2
)
{
...
...
src/include/catalog/pg_proc.h
View file @
1e7c7343
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_proc.h,v 1.8
1 1998/10/22 20:40:49
momjian Exp $
* $Id: pg_proc.h,v 1.8
2 1998/10/29 18:07:06
momjian Exp $
*
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
...
...
@@ -913,6 +913,8 @@ DATA(insert OID = 669 ( varchar PGUID 11 f t f 2 f 1043 "1043 23" 100 0 0 1
DATA
(
insert
OID
=
676
(
mktinterval
PGUID
11
f
t
f
2
f
704
"702 702"
100
0
0
100
foo
bar
));
DESCR
(
"convert to interval"
);
DATA
(
insert
OID
=
619
(
oid8neq
PGUID
11
f
t
f
2
f
16
"30 30"
100
0
0
100
foo
bar
));
DESCR
(
"less-than"
);
DATA
(
insert
OID
=
677
(
oid8lt
PGUID
11
f
t
f
2
f
16
"30 30"
100
0
0
100
foo
bar
));
DESCR
(
"less-than"
);
DATA
(
insert
OID
=
678
(
oid8le
PGUID
11
f
t
f
2
f
16
"30 30"
100
0
0
100
foo
bar
));
...
...
src/include/utils/builtins.h
View file @
1e7c7343
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: builtins.h,v 1.6
8 1998/10/22 20:40:50
momjian Exp $
* $Id: builtins.h,v 1.6
9 1998/10/29 18:07:09
momjian Exp $
*
* NOTES
* This should normally only be included by fmgr.h.
...
...
@@ -334,6 +334,7 @@ extern char *oidout(Oid o);
extern
bool
oideq
(
Oid
arg1
,
Oid
arg2
);
extern
bool
oidne
(
Oid
arg1
,
Oid
arg2
);
extern
bool
oid8eq
(
Oid
*
arg1
,
Oid
*
arg2
);
extern
bool
oid8ne
(
Oid
*
arg1
,
Oid
*
arg2
);
extern
bool
oid8lt
(
Oid
*
arg1
,
Oid
*
arg2
);
extern
bool
oid8le
(
Oid
*
arg1
,
Oid
*
arg2
);
extern
bool
oid8ge
(
Oid
*
arg1
,
Oid
*
arg2
);
...
...
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