diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-06-27 13:55:55 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-06-27 13:55:55 -0400 |
commit | e16954f3d27fa8e16c379ff6623ae18d6250a39c (patch) | |
tree | 169b720843aaab0b99e98bb81a38ce557c762ecb /src/include/access/hio.h | |
parent | 66a36ef949e4e6b8dbcc8a024eecfeca967d1d9c (diff) | |
download | postgresql-e16954f3d27fa8e16c379ff6623ae18d6250a39c.tar.gz postgresql-e16954f3d27fa8e16c379ff6623ae18d6250a39c.zip |
Try again to make the visibility map crash safe.
My previous attempt was quite a bit less than half-baked with respect to
heap_update().
Diffstat (limited to 'src/include/access/hio.h')
-rw-r--r-- | src/include/access/hio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/hio.h b/src/include/access/hio.h index 7ae879788cf..6eac97e46cd 100644 --- a/src/include/access/hio.h +++ b/src/include/access/hio.h @@ -39,6 +39,6 @@ extern void RelationPutHeapTuple(Relation relation, Buffer buffer, extern Buffer RelationGetBufferForTuple(Relation relation, Size len, Buffer otherBuffer, int options, struct BulkInsertStateData * bistate, - Buffer *vmbuffer); + Buffer *vmbuffer, Buffer *vmbuffer_other); #endif /* HIO_H */ |