diff options
author | Kevin Grittner | 2016-04-08 19:30:10 +0000 |
---|---|---|
committer | Kevin Grittner | 2016-04-08 19:30:10 +0000 |
commit | 8b65cf4c5edabdcae45ceaef7b9ac236879aae50 (patch) | |
tree | f4412d3e9bc0db823ac32e08fac8e3124b42ff02 /contrib/bloom/blinsert.c | |
parent | 689f9a058854a1a32e994818dd6d79f49d8f8a1b (diff) |
Modify BufferGetPage() to prepare for "snapshot too old" feature
This patch is a no-op patch which is intended to reduce the chances
of failures of omission once the functional part of the "snapshot
too old" patch goes in. It adds parameters for snapshot, relation,
and an enum to specify whether the snapshot age check needs to be
done for the page at this point. This initial patch passes NULL
for the first two new parameters and BGP_NO_SNAPSHOT_TEST for the
third. The follow-on patch will change the places where the test
needs to be made.
Diffstat (limited to 'contrib/bloom/blinsert.c')
-rw-r--r-- | contrib/bloom/blinsert.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/bloom/blinsert.c b/contrib/bloom/blinsert.c index 6eecb12187d..cc12808375b 100644 --- a/contrib/bloom/blinsert.c +++ b/contrib/bloom/blinsert.c @@ -204,7 +204,8 @@ blinsert(Relation index, Datum *values, bool *isnull, */ metaBuffer = ReadBuffer(index, BLOOM_METAPAGE_BLKNO); LockBuffer(metaBuffer, BUFFER_LOCK_SHARE); - metaData = BloomPageGetMeta(BufferGetPage(metaBuffer)); + metaData = BloomPageGetMeta(BufferGetPage(metaBuffer, NULL, NULL, + BGP_NO_SNAPSHOT_TEST)); if (metaData->nEnd > metaData->nStart) { |