From: Kevin Grittner Date: Thu, 21 Apr 2016 16:51:20 +0000 (-0500) Subject: Include snapmgr.h in blscan.c X-Git-Url: http://git.postgresql.org/gitweb/static/developers.postgresql.org?a=commitdiff_plain;h=7cb1db1d9599f0a09d6920d2149d956ef6d88b0e;p=users%2Frhaas%2Fpostgres.git Include snapmgr.h in blscan.c Windows builds on buildfarm are failing because old_snapshot_threshold is not found in the bloom filter contrib module. --- diff --git a/contrib/bloom/blscan.c b/contrib/bloom/blscan.c index fc82f54373..12b15b69c9 100644 --- a/contrib/bloom/blscan.c +++ b/contrib/bloom/blscan.c @@ -19,6 +19,7 @@ #include "storage/lmgr.h" #include "utils/memutils.h" #include "utils/rel.h" +#include "utils/snapmgr.h" #include "bloom.h"