diff options
| author | Bruce Momjian <bruce@momjian.us> | 1998-10-08 18:30:52 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1998-10-08 18:30:52 +0000 |
| commit | 173c555948b9002b3b899d7331682e8812d171dc (patch) | |
| tree | 76ee9e08cdd0d06a890d160d17d99e9f5331d4a2 /src/backend/access/common/heaptuple.c | |
| parent | 0a1c2805b35f59b3654d51c965d03699e60b50f7 (diff) | |
| download | postgresql-173c555948b9002b3b899d7331682e8812d171dc.tar.gz | |
Make functions static or ifdef NOT_USED. Prevent pg_version creation.
Diffstat (limited to 'src/backend/access/common/heaptuple.c')
| -rw-r--r-- | src/backend/access/common/heaptuple.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/backend/access/common/heaptuple.c b/src/backend/access/common/heaptuple.c index f7b53083e4..1659484434 100644 --- a/src/backend/access/common/heaptuple.c +++ b/src/backend/access/common/heaptuple.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.44 1998/09/07 05:35:27 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/common/heaptuple.c,v 1.45 1998/10/08 18:29:10 momjian Exp $ * * NOTES * The old interface functions have been converted to macros @@ -274,6 +274,7 @@ heap_sysattrbyval(AttrNumber attno) return byval; } +#ifdef NOT_USED /* ---------------- * heap_getsysattr * ---------------- @@ -300,6 +301,7 @@ heap_getsysattr(HeapTuple tup, Buffer b, int attnum) } return (Datum) NULL; } +#endif /* ---------------- * nocachegetattr |
