diff options
Diffstat (limited to 'src/include/storage/itemid.h')
| -rw-r--r-- | src/include/storage/itemid.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/storage/itemid.h b/src/include/storage/itemid.h index c6b0abc19b..7b683ab68c 100644 --- a/src/include/storage/itemid.h +++ b/src/include/storage/itemid.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: itemid.h,v 1.4 1997/09/08 21:54:24 momjian Exp $ + * $Id: itemid.h,v 1.5 1998/01/13 04:05:12 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -22,10 +22,10 @@ typedef bits16 ItemIdFlags; typedef struct ItemIdData { /* line pointers */ - unsigned lp_off:13, /* offset to find tup */ + unsigned lp_off:15, /* offset to find tup */ /* can be reduced by 2 if necc. */ - lp_flags:6, /* flags on tuple */ - lp_len:13; /* length of tuple */ + lp_flags:2, /* flags on tuple */ + lp_len:15; /* length of tuple */ } ItemIdData; typedef struct ItemIdData *ItemId; |
