diff options
author | Bruce Momjian | 2001-11-05 17:46:40 +0000 |
---|---|---|
committer | Bruce Momjian | 2001-11-05 17:46:40 +0000 |
commit | ea08e6cd5542cb269ecd3e735f1dfa3bb61fbc4f (patch) | |
tree | bf6b60c08be3ddf5a40e110e8276dc2d45b1431c /src/include/access/heapam.h | |
parent | 34153b205265e2e831c1e3ee02be0fc88fa41710 (diff) |
New pgindent run with fixes suggested by Tom. Patch manually reviewed,
initdb/regression tests pass.
Diffstat (limited to 'src/include/access/heapam.h')
-rw-r--r-- | src/include/access/heapam.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/access/heapam.h b/src/include/access/heapam.h index b0124ed31cd..9798b5f76a8 100644 --- a/src/include/access/heapam.h +++ b/src/include/access/heapam.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: heapam.h,v 1.71 2001/11/02 16:30:29 tgl Exp $ + * $Id: heapam.h,v 1.72 2001/11/05 17:46:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -83,7 +83,7 @@ extern Datum nocachegetattr(HeapTuple tup, int attnum, extern Datum fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, bool *isnull); -#endif /* defined(DISABLE_COMPLEX_MACRO) */ +#endif /* defined(DISABLE_COMPLEX_MACRO) */ /* ---------------- @@ -139,6 +139,7 @@ extern void relation_close(Relation relation, LOCKMODE lockmode); extern Relation heap_open(Oid relationId, LOCKMODE lockmode); extern Relation heap_openr(const char *relationName, LOCKMODE lockmode); + #define heap_close(r,l) relation_close(r,l) extern HeapScanDesc heap_beginscan(Relation relation, int atend, @@ -186,4 +187,4 @@ extern HeapTuple heap_modifytuple(HeapTuple tuple, extern void heap_freetuple(HeapTuple tuple); extern HeapTuple heap_addheader(int natts, Size structlen, void *structure); -#endif /* HEAPAM_H */ +#endif /* HEAPAM_H */ |