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
b0d243e4
Commit
b0d243e4
authored
Nov 14, 2000
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean up comments.
parent
0937bf95
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
src/include/access/htup.h
src/include/access/htup.h
+6
-6
No files found.
src/include/access/htup.h
View file @
b0d243e4
...
...
@@ -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
7 2000/10/24 09:56:23 vadim
Exp $
* $Id: htup.h,v 1.3
8 2000/11/14 20:47:34 tgl
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -167,7 +167,7 @@ typedef struct xl_heap_update
#define TableOidAttributeNumber (-7)
#define FirstLowInvalidHeapAttributeNumber (-8)
/* If you make any changes above, the order of
f
offsets in this must change */
/* If you make any changes above, the order of offsets in this must change */
extern
long
heap_sysoffset
[];
/*
...
...
@@ -181,16 +181,16 @@ extern long heap_sysoffset[];
*
* Change for 7.0:
* Up to now t_data could be NULL, the memory location directly following
* HeapTupleData or pointing into a buffer. Now, it could also point to
* HeapTupleData
,
or pointing into a buffer. Now, it could also point to
* a separate allocation that was done in the t_datamcxt memory context.
*/
typedef
struct
HeapTupleData
{
uint32
t_len
;
/* length of *t_data */
ItemPointerData
t_self
;
/* SelfItemPointer */
Oid
tableOid
;
/*
*/
MemoryContext
t_datamcxt
;
/*
*/
HeapTupleHeader
t_data
;
/*
*/
Oid
tableOid
;
/* table the tuple came from
*/
MemoryContext
t_datamcxt
;
/* mcxt in which allocated
*/
HeapTupleHeader
t_data
;
/* -> tuple header and data
*/
}
HeapTupleData
;
typedef
HeapTupleData
*
HeapTuple
;
...
...
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