diff options
author | Simon Riggs | 2017-04-05 19:38:17 +0000 |
---|---|---|
committer | Simon Riggs | 2017-04-05 19:38:17 +0000 |
commit | 00b6b6feb12cef53737287b67ecef6aff1f1d8ab (patch) | |
tree | 70eec246ea472e47e55eaaa099b8f814deb48243 /configure | |
parent | ed770c325ca374fee7b3b66f5cb29af1a73a1743 (diff) |
Allow --with-wal-segsize=n up to n=1024MB
Other part of Beena Emerson's patch to allow testing
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure index 56e3f8f2425..de8660d00db 100755 --- a/configure +++ b/configure @@ -3725,7 +3725,11 @@ case ${wal_segsize} in 16) ;; 32) ;; 64) ;; - *) as_fn_error $? "Invalid WAL segment size. Allowed values are 1,2,4,8,16,32,64." "$LINENO" 5 + 128) ;; + 256) ;; + 512) ;; + 1024) ;; + *) as_fn_error $? "Invalid WAL segment size. Allowed values are 1,2,4,8,16,32,64,128,256,512,1024." "$LINENO" 5 esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${wal_segsize}MB" >&5 $as_echo "${wal_segsize}MB" >&6; } |