From 4b9427685a1a250bd6e4360b65e875f7fb16a0a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=BE=D0=BD=D0=B8=D0=B4=20=D0=AE=D1=80=D1=8C?= =?UTF-8?q?=D0=B5=D0=B2=20=28Leonid=20Yuriev=29?= Date: Mon, 31 Mar 2025 00:54:07 +0300 Subject: [PATCH] =?UTF-8?q?mdbx:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=B2=D0=BD=D1=83=D1=82=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BD=D0=B5=D0=B9=20=D0=BE=D0=BF=D1=86=D0=B8=D0=B8=20`MD?= =?UTF-8?q?BX=5FDEBUG=5FDPL=5FLIMIT`.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api-opts.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/api-opts.c b/src/api-opts.c index 4f13d875..eb23215a 100644 --- a/src/api-opts.c +++ b/src/api-opts.c @@ -147,6 +147,9 @@ void env_options_adjust_dp_limit(MDBX_env *env) { if (env->options.dp_limit < CURSOR_STACK_SIZE * 4) env->options.dp_limit = CURSOR_STACK_SIZE * 4; } +#ifdef MDBX_DEBUG_DPL_LIMIT + env->options.dp_limit = MDBX_DEBUG_DPL_LIMIT; +#endif /* MDBX_DEBUG_DPL_LIMIT */ if (env->options.dp_initial > env->options.dp_limit && env->options.dp_initial > default_dp_initial(env)) env->options.dp_initial = env->options.dp_limit; env->options.need_dp_limit_adjust = false;