1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-29 22:49:41 +03:00
This commit is contained in:
Vadim B. Mikheev
2000-07-04 01:49:44 +00:00
parent e1a118e5e6
commit d0273c07ac
5 changed files with 28 additions and 12 deletions

View File

@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
* $Id: itemptr.h,v 1.14 2000/01/26 05:58:33 momjian Exp $
* $Id: itemptr.h,v 1.15 2000/07/04 01:49:44 vadim Exp $
*
*-------------------------------------------------------------------------
*/
@@ -30,6 +30,9 @@ typedef struct ItemPointerData
OffsetNumber ip_posid;
} ItemPointerData;
#define SizeOfIptrData \
(offsetof(ItemPointerData, ip_posid) + sizeof(OffsetNumber))
typedef ItemPointerData *ItemPointer;
/* ----------------