aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-06-19 11:18:50 +0900
committerMichael Paquier <michael@paquier.xyz>2019-06-19 11:18:50 +0900
commit414cca40d506dd3f17b49ae3139853139192c2ba (patch)
treebd70743727c41686ff9c069e2b2a2b8417932127 /src
parent3c28fd2281223580b88473e5145b752cc7cbadf9 (diff)
downloadpostgresql-414cca40d506dd3f17b49ae3139853139192c2ba.tar.gz
postgresql-414cca40d506dd3f17b49ae3139853139192c2ba.zip
Remove last references to WAL segment size in MSVC scripts
fc49e24 has removed the last use of this compile-time variable as WAL segment size is something that can now be set at initdb time, still this commit has forgotten some references to it. Discussion: https://postgr.es/m/20190617073228.GE18917@paquier.xyz
Diffstat (limited to 'src')
-rw-r--r--src/tools/msvc/Solution.pm4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
index 33ba15c15ee..cbe019e5244 100644
--- a/src/tools/msvc/Solution.pm
+++ b/src/tools/msvc/Solution.pm
@@ -55,10 +55,6 @@ sub _new
die "Bad wal_blocksize $options->{wal_blocksize}"
unless grep { $_ == $options->{wal_blocksize} }
(1, 2, 4, 8, 16, 32, 64);
- $options->{wal_segsize} = 16
- unless $options->{wal_segsize}; # undef or 0 means default
- die "Bad wal_segsize $options->{wal_segsize}"
- unless grep { $_ == $options->{wal_segsize} } (1, 2, 4, 8, 16, 32, 64);
return $self;
}