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
716d506a
Commit
716d506a
authored
Oct 25, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make sure the btree patch gets into 2.0 as well...
Still submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
parent
e18d49d8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
50 additions
and
9 deletions
+50
-9
src/backend/access/nbtree/nbtinsert.c
src/backend/access/nbtree/nbtinsert.c
+50
-9
No files found.
src/backend/access/nbtree/nbtinsert.c
View file @
716d506a
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
*
*
*
*
* IDENTIFICATION
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.
3 1996/10/23 07:39:00
scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtinsert.c,v 1.
4 1996/10/25 09:55:36
scrappy Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -815,7 +815,8 @@ _bt_itemcmp(Relation rel,
...
@@ -815,7 +815,8 @@ _bt_itemcmp(Relation rel,
/*
/*
* _bt_updateitem() -- updates the key of the item identified by the
* _bt_updateitem() -- updates the key of the item identified by the
* oid with the key of newItem (done in place)
* oid with the key of newItem (done in place if
* possible)
*
*
*/
*/
static
void
static
void
...
@@ -829,14 +830,17 @@ _bt_updateitem(Relation rel,
...
@@ -829,14 +830,17 @@ _bt_updateitem(Relation rel,
OffsetNumber
maxoff
;
OffsetNumber
maxoff
;
OffsetNumber
i
;
OffsetNumber
i
;
ItemPointerData
itemPtrData
;
ItemPointerData
itemPtrData
;
BTItem
item
;
BTItem
item
,
itemCopy
;
IndexTuple
oldIndexTuple
,
newIndexTuple
;
IndexTuple
oldIndexTuple
,
newIndexTuple
;
int
newSize
,
oldSize
,
first
;
page
=
BufferGetPage
(
buf
);
page
=
BufferGetPage
(
buf
);
maxoff
=
PageGetMaxOffsetNumber
(
page
);
maxoff
=
PageGetMaxOffsetNumber
(
page
);
/* locate item on the page */
/* locate item on the page */
i
=
P_HIKEY
;
first
=
P_RIGHTMOST
((
BTPageOpaque
)
PageGetSpecialPointer
(
page
))
\
?
P_HIKEY
:
P_FIRSTKEY
;
i
=
first
;
do
{
do
{
item
=
(
BTItem
)
PageGetItem
(
page
,
PageGetItemId
(
page
,
i
));
item
=
(
BTItem
)
PageGetItem
(
page
,
PageGetItemId
(
page
,
i
));
i
=
OffsetNumberNext
(
i
);
i
=
OffsetNumberNext
(
i
);
...
@@ -849,9 +853,46 @@ _bt_updateitem(Relation rel,
...
@@ -849,9 +853,46 @@ _bt_updateitem(Relation rel,
oldIndexTuple
=
&
(
item
->
bti_itup
);
oldIndexTuple
=
&
(
item
->
bti_itup
);
newIndexTuple
=
&
(
newItem
->
bti_itup
);
newIndexTuple
=
&
(
newItem
->
bti_itup
);
oldSize
=
DOUBLEALIGN
(
IndexTupleSize
(
oldIndexTuple
));
newSize
=
DOUBLEALIGN
(
IndexTupleSize
(
newIndexTuple
));
#ifdef NBTINSERT_PATCH_DEBUG
printf
(
"_bt_updateitem: newSize=%d, oldSize=%d
\n
"
,
newSize
,
oldSize
);
#endif
/*
* If new and old item have the same size do the update in place
* and return.
*/
if
(
oldSize
==
newSize
)
{
/* keep the original item pointer */
/* keep the original item pointer */
ItemPointerCopy
(
&
(
oldIndexTuple
->
t_tid
),
&
itemPtrData
);
ItemPointerCopy
(
&
(
oldIndexTuple
->
t_tid
),
&
itemPtrData
);
CopyIndexTuple
(
newIndexTuple
,
&
oldIndexTuple
);
CopyIndexTuple
(
newIndexTuple
,
&
oldIndexTuple
);
ItemPointerCopy
(
&
itemPtrData
,
&
(
oldIndexTuple
->
t_tid
));
ItemPointerCopy
(
&
itemPtrData
,
&
(
oldIndexTuple
->
t_tid
));
return
;
}
/*
* If new and old items have different size the update in place
* is not possible. In this case the old item is deleted and the
* new one is inserted.
* The new insertion should be done using _bt_insertonpg which
* would also takes care of the page splitting if needed, but
* unfortunately it doesn't work, so PageAddItem is used instead.
* There is the possibility that there is not enough space in the
* page and the item is not inserted.
*/
itemCopy
=
palloc
(
newSize
);
memmove
((
char
*
)
itemCopy
,
(
char
*
)
newItem
,
newSize
);
itemCopy
->
bti_oid
=
item
->
bti_oid
;
newIndexTuple
=
&
(
itemCopy
->
bti_itup
);
ItemPointerCopy
(
&
(
oldIndexTuple
->
t_tid
),
&
(
newIndexTuple
->
t_tid
));
/*
* Get the offset number of the item then delete it and insert
* the new item in the same place.
*/
i
=
OffsetNumberPrev
(
i
);
PageIndexTupleDelete
(
page
,
i
);
PageAddItem
(
page
,
(
Item
)
itemCopy
,
newSize
,
i
,
LP_USED
);
pfree
(
itemCopy
);
}
}
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