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
21e1e664
Commit
21e1e664
authored
Nov 14, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cleanup of tableOid-related coding.
parent
b0d243e4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
27 additions
and
56 deletions
+27
-56
src/backend/access/common/heaptuple.c
src/backend/access/common/heaptuple.c
+16
-42
src/backend/access/heap/heapam.c
src/backend/access/heap/heapam.c
+7
-10
src/include/access/heapam.h
src/include/access/heapam.h
+2
-2
src/include/access/htup.h
src/include/access/htup.h
+2
-2
No files found.
src/backend/access/common/heaptuple.c
View file @
21e1e664
...
...
@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.6
5 2000/07/04 02:40:56
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.6
6 2000/11/14 21:04:32
tgl Exp $
*
* NOTES
* The old interface functions have been converted to macros
...
...
@@ -275,38 +275,6 @@ heap_sysattrbyval(AttrNumber attno)
return
byval
;
}
#ifdef NOT_USED
/* ----------------
* heap_getsysattr
* ----------------
*/
Datum
heap_getsysattr
(
HeapTuple
tup
,
Buffer
b
,
int
attnum
)
{
switch
(
attnum
)
{
case
TableOidAttributeNumber
:
return
(
Datum
)
&
tup
->
t_tableoid
;
case
SelfItemPointerAttributeNumber
:
return
(
Datum
)
&
tup
->
t_ctid
;
case
ObjectIdAttributeNumber
:
return
(
Datum
)
(
long
)
tup
->
t_oid
;
case
MinTransactionIdAttributeNumber
:
return
(
Datum
)
(
long
)
tup
->
t_xmin
;
case
MinCommandIdAttributeNumber
:
return
(
Datum
)
(
long
)
tup
->
t_cmin
;
case
MaxTransactionIdAttributeNumber
:
return
(
Datum
)
(
long
)
tup
->
t_xmax
;
case
MaxCommandIdAttributeNumber
:
return
(
Datum
)
(
long
)
tup
->
t_cmax
;
default:
elog
(
ERROR
,
"heap_getsysattr: undefined attnum %d"
,
attnum
);
}
return
(
Datum
)
NULL
;
}
#endif
/* ----------------
* nocachegetattr
*
...
...
@@ -563,6 +531,9 @@ nocachegetattr(HeapTuple tuple,
* heap_copytuple
*
* returns a copy of an entire tuple
*
* The HeapTuple struct, tuple header, and tuple data are all allocated
* as a single palloc() block.
* ----------------
*/
HeapTuple
...
...
@@ -576,17 +547,17 @@ heap_copytuple(HeapTuple tuple)
newTuple
=
(
HeapTuple
)
palloc
(
HEAPTUPLESIZE
+
tuple
->
t_len
);
newTuple
->
t_len
=
tuple
->
t_len
;
newTuple
->
t_self
=
tuple
->
t_self
;
newTuple
->
t_tableOid
=
tuple
->
t_tableOid
;
newTuple
->
t_datamcxt
=
CurrentMemoryContext
;
newTuple
->
t_data
=
(
HeapTupleHeader
)
((
char
*
)
newTuple
+
HEAPTUPLESIZE
);
memmove
((
char
*
)
newTuple
->
t_data
,
(
char
*
)
tuple
->
t_data
,
tuple
->
t_len
);
memcpy
((
char
*
)
newTuple
->
t_data
,
(
char
*
)
tuple
->
t_data
,
tuple
->
t_len
);
return
newTuple
;
}
/* ----------------
* heap_copytuple_with_tuple
*
*
returns a copy of an tuple->t_data
*
copy a tuple into a caller-supplied HeapTuple management struct
* ----------------
*/
void
...
...
@@ -600,11 +571,10 @@ heap_copytuple_with_tuple(HeapTuple src, HeapTuple dest)
dest
->
t_len
=
src
->
t_len
;
dest
->
t_self
=
src
->
t_self
;
dest
->
t_tableOid
=
src
->
t_tableOid
;
dest
->
t_datamcxt
=
CurrentMemoryContext
;
dest
->
t_data
=
(
HeapTupleHeader
)
palloc
(
src
->
t_len
);
memmove
((
char
*
)
dest
->
t_data
,
(
char
*
)
src
->
t_data
,
src
->
t_len
);
return
;
memcpy
((
char
*
)
dest
->
t_data
,
(
char
*
)
src
->
t_data
,
src
->
t_len
);
}
#ifdef NOT_USED
...
...
@@ -705,6 +675,7 @@ heap_formtuple(TupleDesc tupleDescriptor,
tuple
->
t_len
=
len
;
ItemPointerSetInvalid
(
&
(
tuple
->
t_self
));
tuple
->
t_tableOid
=
InvalidOid
;
td
->
t_natts
=
numberOfAttributes
;
td
->
t_hoff
=
hoff
;
...
...
@@ -805,6 +776,7 @@ heap_modifytuple(HeapTuple tuple,
newTuple
->
t_data
->
t_infomask
=
infomask
;
newTuple
->
t_data
->
t_natts
=
numberOfAttributes
;
newTuple
->
t_self
=
tuple
->
t_self
;
newTuple
->
t_tableOid
=
tuple
->
t_tableOid
;
return
newTuple
;
}
...
...
@@ -851,17 +823,19 @@ heap_addheader(uint32 natts, /* max domain index */
tuple
->
t_datamcxt
=
CurrentMemoryContext
;
td
=
tuple
->
t_data
=
(
HeapTupleHeader
)
((
char
*
)
tuple
+
HEAPTUPLESIZE
);
MemSet
((
char
*
)
td
,
0
,
len
);
tuple
->
t_len
=
len
;
ItemPointerSetInvalid
(
&
(
tuple
->
t_self
));
tuple
->
t_tableOid
=
InvalidOid
;
MemSet
((
char
*
)
td
,
0
,
len
);
td
->
t_hoff
=
hoff
;
td
->
t_natts
=
natts
;
td
->
t_infomask
=
0
;
td
->
t_infomask
|=
HEAP_XMAX_INVALID
;
if
(
structlen
>
0
)
mem
move
((
char
*
)
td
+
hoff
,
structure
,
(
size_t
)
structlen
);
mem
cpy
((
char
*
)
td
+
hoff
,
structure
,
(
size_t
)
structlen
);
return
tuple
;
}
src/backend/access/heap/heapam.c
View file @
21e1e664
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.9
3 2000/11/08 22:09:54
tgl Exp $
* $Header: /cvsroot/pgsql/src/backend/access/heap/heapam.c,v 1.9
4 2000/11/14 21:04:31
tgl Exp $
*
*
* INTERFACE ROUTINES
...
...
@@ -255,9 +255,7 @@ heapgettup(Relation relation,
OffsetNumber
lineoff
;
int
linesleft
;
ItemPointer
tid
=
(
tuple
->
t_data
==
NULL
)
?
(
ItemPointer
)
NULL
:
&
(
tuple
->
t_self
);
tuple
->
tableOid
=
relation
->
rd_id
;
(
ItemPointer
)
NULL
:
&
(
tuple
->
t_self
);
/* ----------------
* increment access statistics
...
...
@@ -294,6 +292,8 @@ heapgettup(Relation relation,
if
(
!
ItemPointerIsValid
(
tid
))
Assert
(
!
PointerIsValid
(
tid
));
tuple
->
t_tableOid
=
relation
->
rd_id
;
/* ----------------
* return null immediately if relation is empty
...
...
@@ -1145,7 +1145,6 @@ heap_fetch(Relation relation,
ItemPointer
tid
=
&
(
tuple
->
t_self
);
OffsetNumber
offnum
;
tuple
->
tableOid
=
relation
->
rd_id
;
/* ----------------
* increment access statistics
* ----------------
...
...
@@ -1193,6 +1192,7 @@ heap_fetch(Relation relation,
tuple
->
t_datamcxt
=
NULL
;
tuple
->
t_data
=
(
HeapTupleHeader
)
PageGetItem
((
Page
)
dp
,
lp
);
tuple
->
t_len
=
ItemIdGetLength
(
lp
);
tuple
->
t_tableOid
=
relation
->
rd_id
;
/* ----------------
* check time qualification of tid
...
...
@@ -1241,7 +1241,6 @@ heap_get_latest_tid(Relation relation,
bool
invalidBlock
,
linkend
;
tp
.
tableOid
=
relation
->
rd_id
;
/* ----------------
* get the buffer from the relation descriptor
* Note that this does a buffer pin.
...
...
@@ -1333,7 +1332,6 @@ heap_insert(Relation relation, HeapTuple tup)
Buffer
buffer
;
/* increment access statistics */
tup
->
tableOid
=
relation
->
rd_id
;
IncrHeapAccessStat
(
local_insert
);
IncrHeapAccessStat
(
global_insert
);
...
...
@@ -1357,6 +1355,7 @@ heap_insert(Relation relation, HeapTuple tup)
StoreInvalidTransactionId
(
&
(
tup
->
t_data
->
t_xmax
));
tup
->
t_data
->
t_infomask
&=
~
(
HEAP_XACT_MASK
);
tup
->
t_data
->
t_infomask
|=
HEAP_XMAX_INVALID
;
tup
->
t_tableOid
=
relation
->
rd_id
;
#ifdef TUPLE_TOASTER_ACTIVE
/* ----------
...
...
@@ -1420,7 +1419,6 @@ heap_delete(Relation relation, ItemPointer tid, ItemPointer ctid)
Buffer
buffer
;
int
result
;
tp
.
tableOid
=
relation
->
rd_id
;
/* increment access statistics */
IncrHeapAccessStat
(
local_delete
);
IncrHeapAccessStat
(
global_delete
);
...
...
@@ -1440,6 +1438,7 @@ heap_delete(Relation relation, ItemPointer tid, ItemPointer ctid)
tp
.
t_data
=
(
HeapTupleHeader
)
PageGetItem
((
Page
)
dp
,
lp
);
tp
.
t_len
=
ItemIdGetLength
(
lp
);
tp
.
t_self
=
*
tid
;
tp
.
t_tableOid
=
relation
->
rd_id
;
l1:
result
=
HeapTupleSatisfiesUpdate
(
&
tp
);
...
...
@@ -1546,7 +1545,6 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
Buffer
buffer
,
newbuf
;
int
result
;
newtup
->
tableOid
=
relation
->
rd_id
;
/* increment access statistics */
IncrHeapAccessStat
(
local_replace
);
IncrHeapAccessStat
(
global_replace
);
...
...
@@ -1733,7 +1731,6 @@ heap_mark4update(Relation relation, HeapTuple tuple, Buffer *buffer)
PageHeader
dp
;
int
result
;
tuple
->
tableOid
=
relation
->
rd_id
;
/* increment access statistics */
IncrHeapAccessStat
(
local_mark4update
);
IncrHeapAccessStat
(
global_mark4update
);
...
...
src/include/access/heapam.h
View file @
21e1e664
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: heapam.h,v 1.5
6 2000/08/03 19:19:38
tgl Exp $
* $Id: heapam.h,v 1.5
7 2000/11/14 21:04:32
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -191,7 +191,7 @@ fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc,
: \
(((attnum) == TableOidAttributeNumber) ? \
( \
(Datum)((tup)->tableOid) \
(Datum)((tup)->t
_t
ableOid) \
) \
: \
( \
...
...
src/include/access/htup.h
View file @
21e1e664
...
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: htup.h,v 1.3
8 2000/11/14 20:47:34
tgl Exp $
* $Id: htup.h,v 1.3
9 2000/11/14 21:04:32
tgl Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -188,7 +188,7 @@ typedef struct HeapTupleData
{
uint32
t_len
;
/* length of *t_data */
ItemPointerData
t_self
;
/* SelfItemPointer */
Oid
tableOid
;
/* table the tuple came from */
Oid
t
_t
ableOid
;
/* table the tuple came from */
MemoryContext
t_datamcxt
;
/* mcxt in which allocated */
HeapTupleHeader
t_data
;
/* -> tuple header and data */
}
HeapTupleData
;
...
...
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