diff options
author | Robert Haas <rhaas@postgresql.org> | 2010-08-14 02:22:10 +0000 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2010-08-14 02:22:10 +0000 |
commit | 27f145a40e0e0273d8c25fe5e21ef26a51036197 (patch) | |
tree | 8f05ea4c8ca57171c20186110261e03f0e87f6d1 /src/backend/storage/buffer/bufmgr.c | |
parent | 105d4c5ffe0e239173a30615465b4240ead63d05 (diff) | |
download | postgresql-27f145a40e0e0273d8c25fe5e21ef26a51036197.tar.gz postgresql-27f145a40e0e0273d8c25fe5e21ef26a51036197.zip |
Further dtrace adjustments for the backend-IDs-in-relpath patch.
Update the documentation, and back out a few ill-considered changes
whose folly I failed to realize for failure to read the documentation.
Diffstat (limited to 'src/backend/storage/buffer/bufmgr.c')
-rw-r--r-- | src/backend/storage/buffer/bufmgr.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/backend/storage/buffer/bufmgr.c b/src/backend/storage/buffer/bufmgr.c index 7b3536335be..e4f5dba0998 100644 --- a/src/backend/storage/buffer/bufmgr.c +++ b/src/backend/storage/buffer/bufmgr.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.258 2010/08/13 22:54:17 rhaas Exp $ + * $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.259 2010/08/14 02:22:10 rhaas Exp $ * *------------------------------------------------------------------------- */ @@ -1852,8 +1852,7 @@ FlushBuffer(volatile BufferDesc *buf, SMgrRelation reln) buf->tag.blockNum, reln->smgr_rnode.node.spcNode, reln->smgr_rnode.node.dbNode, - reln->smgr_rnode.node.relNode, - reln->smgr_rnode.backend); + reln->smgr_rnode.node.relNode); /* * Force XLOG flush up to buffer's LSN. This implements the basic WAL @@ -1892,8 +1891,7 @@ FlushBuffer(volatile BufferDesc *buf, SMgrRelation reln) buf->tag.blockNum, reln->smgr_rnode.node.spcNode, reln->smgr_rnode.node.dbNode, - reln->smgr_rnode.node.relNode, - reln->smgr_rnode.backend); + reln->smgr_rnode.node.relNode); /* Pop the error context stack */ error_context_stack = errcontext.previous; |