mdbx-test: remove obsolete coalesce option.

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2022-06-23 14:19:46 +03:00
parent e3a09db3da
commit acce7d4b16
4 changed files with 2 additions and 4 deletions

View File

@ -369,7 +369,6 @@ const struct option_verb mode_bits[] = {
{"notls", unsigned(MDBX_NOTLS)},
{"nordahead", unsigned(MDBX_NORDAHEAD)},
{"nomeminit", unsigned(MDBX_NOMEMINIT)},
{"coalesce", unsigned(MDBX_COALESCE)},
{"lifo", unsigned(MDBX_LIFORECLAIM)},
{"perturb", unsigned(MDBX_PAGEPERTURB)},
{"accede", unsigned(MDBX_ACCEDE)},

View File

@ -284,7 +284,7 @@ else
fi
syncmodes=("" ,+nosync-safe ,+nosync-utterly)
options=(writemap coalesce lifo notls perturb)
options=(writemap lifo notls perturb)
function join { local IFS="$1"; shift; echo "$*"; }

View File

@ -98,7 +98,6 @@ MDBX_NORETURN void usage(void) {
" accede == MDBX_ACCEDE\n"
" nometasync == MDBX_NOMETASYNC\n"
" lifo == MDBX_LIFORECLAIM\n"
" coalesce == MDBX_COALESCE\n"
" nosync-safe == MDBX_SAFE_NOSYNC\n"
" writemap == MDBX_WRITEMAP\n"
" nosync-utterly == MDBX_UTTERLY_NOSYNC\n"

View File

@ -263,7 +263,7 @@ else
fi
syncmodes=("" ,+nosync-safe ,+nosync-utterly)
options=(writemap coalesce lifo notls perturb)
options=(writemap lifo notls perturb)
function join { local IFS="$1"; shift; echo "$*"; }