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
427a8791
Commit
427a8791
authored
Mar 24, 1997
by
Vadim B. Mikheev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New func _bt_checkkeys() added to let caller know number of keys
for which checking was TRUE.
parent
bdae359a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/include/access/nbtree.h
src/include/access/nbtree.h
+4
-4
No files found.
src/include/access/nbtree.h
View file @
427a8791
...
@@ -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: nbtree.h,v 1.1
0 1997/03/18 18:41:16 scrappy
Exp $
* $Id: nbtree.h,v 1.1
1 1997/03/24 08:04:51 vadim
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -67,8 +67,8 @@ typedef struct BTScanOpaqueData {
...
@@ -67,8 +67,8 @@ typedef struct BTScanOpaqueData {
Buffer
btso_curbuf
;
Buffer
btso_curbuf
;
Buffer
btso_mrkbuf
;
Buffer
btso_mrkbuf
;
uint16
qual_ok
;
/* 0 for quals like key == 1 && key > 2 */
uint16
qual_ok
;
/* 0 for quals like key == 1 && key > 2 */
uint16
numberOfKeys
;
/* number of key
attribute
s */
uint16
numberOfKeys
;
/* number of keys */
uint16
numberOfFirstKeys
;
/* number of
first key attributes
*/
uint16
numberOfFirstKeys
;
/* number of
keys for 1st attribute
*/
ScanKey
keyData
;
/* key descriptor */
ScanKey
keyData
;
/* key descriptor */
}
BTScanOpaqueData
;
}
BTScanOpaqueData
;
...
@@ -185,7 +185,6 @@ typedef struct BTPageState {
...
@@ -185,7 +185,6 @@ typedef struct BTPageState {
#define BTORDER_PROC 1
#define BTORDER_PROC 1
/*
/*
* prototypes for functions in nbtinsert.c
* prototypes for functions in nbtinsert.c
*/
*/
...
@@ -274,6 +273,7 @@ extern void _bt_freestack(BTStack stack);
...
@@ -274,6 +273,7 @@ extern void _bt_freestack(BTStack stack);
extern
void
_bt_orderkeys
(
Relation
relation
,
BTScanOpaque
so
);
extern
void
_bt_orderkeys
(
Relation
relation
,
BTScanOpaque
so
);
extern
bool
_bt_checkqual
(
IndexScanDesc
scan
,
IndexTuple
itup
);
extern
bool
_bt_checkqual
(
IndexScanDesc
scan
,
IndexTuple
itup
);
extern
bool
_bt_checkforkeys
(
IndexScanDesc
scan
,
IndexTuple
itup
,
Size
keysz
);
extern
bool
_bt_checkforkeys
(
IndexScanDesc
scan
,
IndexTuple
itup
,
Size
keysz
);
extern
bool
_bt_checkkeys
(
IndexScanDesc
scan
,
IndexTuple
tuple
,
Size
*
keysok
);
extern
BTItem
_bt_formitem
(
IndexTuple
itup
);
extern
BTItem
_bt_formitem
(
IndexTuple
itup
);
/*
/*
...
...
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