diff options
author | Fujii Masao <fujii@postgresql.org> | 2015-10-01 23:00:52 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2015-10-01 23:13:20 +0900 |
commit | 5091f39afe7fef1cccaf501d3c5dd1ec847c7f97 (patch) | |
tree | 08bbadc7804800cdc4c4d159d22e71737c0044f2 | |
parent | 03f9b63e24ea6a40afbf518a281e9fca134e999c (diff) | |
download | postgresql-5091f39afe7fef1cccaf501d3c5dd1ec847c7f97.tar.gz postgresql-5091f39afe7fef1cccaf501d3c5dd1ec847c7f97.zip |
Fix mention of htup.h in storage.sgml
Previously it was documented that the details on HeapTupleHeaderData
struct could be found in htup.h. This is not correct because it's now
defined in htup_details.h.
Back-patch to 9.3 where the definition of HeapTupleHeaderData struct
was moved from htup.h to htup_details.h.
Michael Paquier
-rw-r--r-- | doc/src/sgml/storage.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/storage.sgml b/doc/src/sgml/storage.sgml index 8924b7483fc..fb2b8b950d0 100644 --- a/doc/src/sgml/storage.sgml +++ b/doc/src/sgml/storage.sgml @@ -878,7 +878,7 @@ data. Empty in ordinary tables.</entry> <para> All the details can be found in - <filename>src/include/access/htup.h</filename>. + <filename>src/include/access/htup_details.h</filename>. </para> <para> |