]> granicus.if.org Git - postgresql/commitdiff
Add snapshot_too_old to NSVC @contrib_excludes
authorKevin Grittner <kgrittn@postgresql.org>
Fri, 8 Apr 2016 22:18:10 +0000 (17:18 -0500)
committerKevin Grittner <kgrittn@postgresql.org>
Fri, 8 Apr 2016 22:22:21 +0000 (17:22 -0500)
The buildfarm showed failure for Windows MSVC builds due to this
omission.  This might not be the only problem with the Makefile for
this feature, but hopefully this will get it past the immediate
problem.

Fix suggested by Tom Lane

src/tools/msvc/Mkvcbuild.pm

index 7c9091819c0e7d9cd6f2f2c9ee1e4558aee64efb..3c5092ff9a68a57b700c698c2c08e9fb36b336e0 100644 (file)
@@ -41,9 +41,9 @@ my $contrib_extrasource = {
        'cube' => [ 'contrib/cube/cubescan.l', 'contrib/cube/cubeparse.y' ],
        'seg'  => [ 'contrib/seg/segscan.l',   'contrib/seg/segparse.y' ], };
 my @contrib_excludes = (
-       'commit_ts',      'hstore_plperl', 'hstore_plpython', 'intagg',
-       'ltree_plpython', 'pgcrypto',      'sepgsql',         'brin',
-       'test_extensions');
+       'commit_ts',       'hstore_plperl',    'hstore_plpython', 'intagg',
+       'ltree_plpython',  'pgcrypto',         'sepgsql',         'brin',
+       'test_extensions', 'snapshot_too_old');
 
 # Set of variables for frontend modules
 my $frontend_defines = { 'initdb' => 'FRONTEND' };