diff options
author | Robert Haas <rhaas@postgresql.org> | 2012-01-16 20:37:01 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2012-01-16 20:37:01 -0500 |
commit | 754b8140a1a5ceb12343fd89423da5cc86ce5328 (patch) | |
tree | 881f3dc115d31a8d77015ee804ee74709f0164a9 /src | |
parent | 3b11247aadf857bbcbfc765191273973d9ca9dd7 (diff) | |
download | postgresql-754b8140a1a5ceb12343fd89423da5cc86ce5328.tar.gz postgresql-754b8140a1a5ceb12343fd89423da5cc86ce5328.zip |
fastgetattr is in access/htup.h, not access/heapam.h
Noted by Peter Geoghegan
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/heap/heapam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 5f6ac2ec1fd..99a431a95ff 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -833,7 +833,7 @@ heapgettup_pagemode(HeapScanDesc scan, #if defined(DISABLE_COMPLEX_MACRO) /* * This is formatted so oddly so that the correspondence to the macro - * definition in access/heapam.h is maintained. + * definition in access/htup.h is maintained. */ Datum fastgetattr(HeapTuple tup, int attnum, TupleDesc tupleDesc, |