|
8 | 8 | * |
9 | 9 | * |
10 | 10 | * IDENTIFICATION |
11 | | - * $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.290 2010/05/02 22:28:05 tgl Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.291 2010/05/02 22:37:43 tgl Exp $ |
12 | 12 | * |
13 | 13 | * |
14 | 14 | * INTERFACE ROUTINES |
@@ -4897,9 +4897,10 @@ heap_desc(StringInfo buf, uint8 xl_info, char *rec) |
4897 | 4897 | { |
4898 | 4898 | xl_heap_newpage*xlrec= (xl_heap_newpage*)rec; |
4899 | 4899 |
|
4900 | | -appendStringInfo(buf,"newpage: rel %u/%u/%u; blk %u", |
| 4900 | +appendStringInfo(buf,"newpage: rel %u/%u/%u;fork %u,blk %u", |
4901 | 4901 | xlrec->node.spcNode,xlrec->node.dbNode, |
4902 | | -xlrec->node.relNode,xlrec->blkno); |
| 4902 | +xlrec->node.relNode,xlrec->forknum, |
| 4903 | +xlrec->blkno); |
4903 | 4904 | } |
4904 | 4905 | elseif (info==XLOG_HEAP_LOCK) |
4905 | 4906 | { |
|