diff options
author | Tom Lane | 2017-04-15 18:22:26 +0000 |
---|---|---|
committer | Tom Lane | 2017-04-15 18:22:26 +0000 |
commit | bfba563bc5d80263637a3cfba6a572c20949defe (patch) | |
tree | 6fd16984877e42f02e536b35f9fa2bade471e351 | |
parent | 083dc95a14c05bdaeec3015508ca1d16fc7483b5 (diff) |
Fix erroneous cross-reference in comment.
Seems to have been introduced in commit c219d9b0a. I think there indeed
was a "tupbasics.h" in some early drafts of that refactoring, but it
didn't survive into the committed version.
Amit Kapila
-rw-r--r-- | src/include/access/htup_details.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/htup_details.h b/src/include/access/htup_details.h index 7b6285df13..e365f4f2b4 100644 --- a/src/include/access/htup_details.h +++ b/src/include/access/htup_details.h @@ -165,7 +165,7 @@ struct HeapTupleHeaderData /* MORE DATA FOLLOWS AT END OF STRUCT */ }; -/* typedef appears in tupbasics.h */ +/* typedef appears in htup.h */ #define SizeofHeapTupleHeader offsetof(HeapTupleHeaderData, t_bits) |