|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.4 1996/09/19 20:00:37 scrappy Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.5 1996/10/18 19:01:16 scrappy Exp $ |
12 | 12 | *
|
13 | 13 | * NOTES
|
14 | 14 | * The old interface functions have been converted to macros
|
15 | 15 | * and moved to heapam.h
|
16 | 16 | *
|
17 | 17 | *-------------------------------------------------------------------------
|
18 | 18 | */
|
19 |
| -#include <string.h> |
20 | 19 |
|
21 | 20 | #include "postgres.h"
|
22 | 21 |
|
| 22 | +#include "catalog/pg_attribute.h" |
| 23 | +#include "access/attnum.h" |
| 24 | +#include "nodes/nodes.h" /* required for nodes/pg_list.h */ |
| 25 | +#include "nodes/pg_list.h" |
| 26 | +#include "access/tupdesc.h" |
| 27 | + |
| 28 | +#include "storage/block.h" /* required for storage/itemptr.h */ |
| 29 | +#include "storage/off.h" /* required for storage/itemptr.h */ |
| 30 | +#include "storage/itemptr.h" |
| 31 | +#include "utils/nabstime.h" |
23 | 32 | #include "access/htup.h"
|
24 |
| -#include "access/itup.h" |
25 |
| -#include "access/tupmacs.h" |
26 |
| -#include "access/skey.h" |
27 |
| -#include "access/heapam.h" |
28 |
| -#include "storage/ipc.h" |
| 33 | + |
29 | 34 | #include "storage/buf.h"
|
30 |
| -#include "storage/bufmgr.h" |
31 |
| -#include "access/transam.h" |
32 |
| -#include "storage/bufpage.h" /* for MAXTUPLEN */ |
33 |
| -#include "storage/itemptr.h" |
34 |
| -#include "utils/memutils.h" |
35 |
| -#include "utils/elog.h" |
36 |
| -#include "utils/palloc.h" |
| 35 | + |
| 36 | +#include "storage/itemid.h" |
| 37 | +#include "storage/item.h" |
| 38 | +#include "storage/bufpage.h" |
| 39 | + |
| 40 | +#include "storage/fd.h" |
| 41 | +#include "catalog/pg_am.h" |
| 42 | +#include "catalog/pg_class.h" |
| 43 | +#include "rewrite/prs2lock.h" |
| 44 | +#include "access/skey.h" /* required for access/strat.h */ |
| 45 | +#include "access/strat.h" |
37 | 46 | #include "utils/rel.h"
|
38 |
| -#include "utils/nabstime.h" |
39 | 47 |
|
40 | 48 | /* this is so the sparcstation debugger works */
|
41 | 49 |
|
|
0 commit comments