1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Allow --with-wal-segsize=n up to n=1024MB

Other part of Beena Emerson's patch to allow testing
This commit is contained in:
Simon Riggs
2017-04-05 15:38:17 -04:00
parent ed770c325c
commit 00b6b6feb1
3 changed files with 11 additions and 3 deletions

View File

@ -358,7 +358,11 @@ case ${wal_segsize} in
16) ;;
32) ;;
64) ;;
*) AC_MSG_ERROR([Invalid WAL segment size. Allowed values are 1,2,4,8,16,32,64.])
128) ;;
256) ;;
512) ;;
1024) ;;
*) AC_MSG_ERROR([Invalid WAL segment size. Allowed values are 1,2,4,8,16,32,64,128,256,512,1024.])
esac
AC_MSG_RESULT([${wal_segsize}MB])