Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
427a8791
Commit
427a8791
authored
28 years ago
by
Vadim B. Mikheev
Browse files
Options
Downloads
Patches
Plain Diff
New func _bt_checkkeys() added to let caller know number of keys
for which checking was TRUE.
parent
bdae359a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/include/access/nbtree.h
+4
-4
4 additions, 4 deletions
src/include/access/nbtree.h
with
4 additions
and
4 deletions
src/include/access/nbtree.h
+
4
−
4
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
attribute
s
*/
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
);
/*
/*
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment