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
7787d75d
Commit
7787d75d
authored
Oct 22, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix indexing for INET / CIDR.
parent
3fe6a77f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
4 deletions
+20
-4
src/include/catalog/pg_amop.h
src/include/catalog/pg_amop.h
+18
-2
src/include/catalog/pg_proc.h
src/include/catalog/pg_proc.h
+2
-2
No files found.
src/include/catalog/pg_amop.h
View file @
7787d75d
...
...
@@ -7,7 +7,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_amop.h,v 1.1
6 1998/10/03 05:40:51
momjian Exp $
* $Id: pg_amop.h,v 1.1
7 1998/10/22 05:29:23
momjian Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
...
...
@@ -309,7 +309,7 @@ DATA(insert OID = 0 ( 403 810 1225 4 btreesel btreenpage ));
DATA
(
insert
OID
=
0
(
403
810
1224
5
btreesel
btreenpage
));
/*
* nbtree i
p
* nbtree i
net
*/
DATA
(
insert
OID
=
0
(
403
935
1203
1
btreesel
btreenpage
));
...
...
@@ -318,6 +318,16 @@ DATA(insert OID = 0 ( 403 935 1201 3 btreesel btreenpage ));
DATA
(
insert
OID
=
0
(
403
935
1206
4
btreesel
btreenpage
));
DATA
(
insert
OID
=
0
(
403
935
1205
5
btreesel
btreenpage
));
/*
* nbtree cidr
*/
DATA
(
insert
OID
=
0
(
403
652
822
1
btreesel
btreenpage
));
DATA
(
insert
OID
=
0
(
403
652
823
2
btreesel
btreenpage
));
DATA
(
insert
OID
=
0
(
403
652
820
3
btreesel
btreenpage
));
DATA
(
insert
OID
=
0
(
403
652
825
4
btreesel
btreenpage
));
DATA
(
insert
OID
=
0
(
403
652
824
5
btreesel
btreenpage
));
/*
* hash table _ops
*/
...
...
@@ -352,5 +362,11 @@ DATA(insert OID = 0 ( 405 1115 1108 1 hashsel hashnpage ));
DATA
(
insert
OID
=
0
(
405
1312
1320
1
hashsel
hashnpage
));
/* timespan_ops */
DATA
(
insert
OID
=
0
(
405
1313
1330
1
hashsel
hashnpage
));
/* macaddr_ops */
DATA
(
insert
OID
=
0
(
405
810
1220
1
hashsel
hashnpage
));
/* inet_ops */
DATA
(
insert
OID
=
0
(
405
935
1201
1
hashsel
hashnpage
));
/* cidr_ops */
DATA
(
insert
OID
=
0
(
405
652
820
1
hashsel
hashnpage
));
#endif
/* PG_AMOP_H */
src/include/catalog/pg_proc.h
View file @
7787d75d
/*-------------------------------------------------------------------------
1
/*-------------------------------------------------------------------------
*
* pg_proc.h--
* definition of the system "procedure" relation (pg_proc)
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pg_proc.h,v 1.7
8 1998/10/22 04:58:09
momjian Exp $
* $Id: pg_proc.h,v 1.7
9 1998/10/22 05:29:24
momjian Exp $
*
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
...
...
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