diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-04-23 14:39:12 +0300 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2014-04-23 14:41:51 +0300 |
commit | a4ad9afec2c2266105736ff8d78870356867cc37 (patch) | |
tree | ffa98b07438a4bab4fd1bd0d965e35c3880ac2d4 /src/backend/access/heap/heapam.c | |
parent | 4a781f1e6cf3be5ca84f09804f7d7c3a2180210b (diff) |
Update obsolete comments.
We no longer have a TLI field in the page header.
Diffstat (limited to 'src/backend/access/heap/heapam.c')
-rw-r--r-- | src/backend/access/heap/heapam.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 2605f205e27..7217e96d6a3 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -6974,8 +6974,8 @@ log_newpage(RelFileNode *rnode, ForkNumber forkNum, BlockNumber blkno, recptr = XLogInsert(RM_HEAP_ID, XLOG_HEAP_NEWPAGE, rdata); /* - * The page may be uninitialized. If so, we can't set the LSN and TLI - * because that would corrupt the page. + * The page may be uninitialized. If so, we can't set the LSN because + * that would corrupt the page. */ if (!PageIsNew(page)) { |