aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2014-07-28 16:30:14 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2014-07-28 16:30:14 -0400
commit248fc1f10716964b7e7d0f8ada686801d1e36445 (patch)
treeafa3a55f0928ca2e38dc1c4e77a07a637ce6c74e
parentb0d3636c1775524c5c480510aa528ed2e9b50536 (diff)
downloadpostgresql-248fc1f10716964b7e7d0f8ada686801d1e36445.tar.gz
postgresql-248fc1f10716964b7e7d0f8ada686801d1e36445.zip
Fix obsolete statement in smgr/README.
Since commit 2d00190495b22e0d0ba351b2cda9c95fb2e3d083, fork numbers are defined in relpath.h not relfilenode.h. Fabrízio de Royes Mello
-rw-r--r--src/backend/storage/smgr/README2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/storage/smgr/README b/src/backend/storage/smgr/README
index 12df42a094b..37ed40b6450 100644
--- a/src/backend/storage/smgr/README
+++ b/src/backend/storage/smgr/README
@@ -50,7 +50,7 @@ independently of the main data file, while still treating it all as a single
physical relation in system catalogs.
It is assumed that the main fork, fork number 0 or MAIN_FORKNUM, always
-exists. Fork numbers are assigned in src/include/storage/relfilenode.h.
+exists. Fork numbers are assigned in src/include/common/relpath.h.
Functions in smgr.c and md.c take an extra fork number argument, in addition
to relfilenode and block number, to identify which relation fork you want to
access. Since most code wants to access the main fork, a shortcut version of