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
1380921e
Commit
1380921e
authored
Jan 28, 2000
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch from Hiroshi for overflow btree comparison.
parent
3f6ff329
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
doc/TODO
doc/TODO
+1
-1
src/backend/access/nbtree/nbtcompare.c
src/backend/access/nbtree/nbtcompare.c
+7
-2
No files found.
doc/TODO
View file @
1380921e
TODO list for PostgreSQL
========================
Last updated: Thu Jan 27 23:
46:41
EST 2000
Last updated: Thu Jan 27 23:
55:43
EST 2000
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
...
...
src/backend/access/nbtree/nbtcompare.c
View file @
1380921e
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtcompare.c,v 1.3
1 2000/01/26 05:55:58
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtcompare.c,v 1.3
2 2000/01/28 17:23:47
momjian Exp $
*
* NOTES
* These functions are stored in pg_amproc. For each operator class
...
...
@@ -35,7 +35,12 @@ btint2cmp(int16 a, int16 b)
int32
btint4cmp
(
int32
a
,
int32
b
)
{
return
a
-
b
;
if
(
a
>
b
)
return
1
;
else
if
(
a
==
b
)
return
0
;
else
return
-
1
;
}
int32
...
...
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