From e03f16999c569f5d37c94d4726b1e23f8004125f 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: Sun, 24 Aug 2025 09:32:16 +0300 Subject: [PATCH] mdbx: cleanup extra changes after the `5c6d91f7c`. --- src/tree-ops.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/tree-ops.c b/src/tree-ops.c index 169a8fe6..61429d82 100644 --- a/src/tree-ops.c +++ b/src/tree-ops.c @@ -932,17 +932,8 @@ retry: return MDBX_PROBLEM; } -static int do_page_split(MDBX_cursor *mc, const MDBX_val *const newkey, MDBX_val *const newdata, pgno_t newpgno, - const unsigned naf); - int page_split(MDBX_cursor *mc, const MDBX_val *const newkey, MDBX_val *const newdata, pgno_t newpgno, const unsigned naf) { - int rc = do_page_split(mc, newkey, newdata, newpgno, naf); - return rc; -} - -int do_page_split(MDBX_cursor *mc, const MDBX_val *const newkey, MDBX_val *const newdata, pgno_t newpgno, - const unsigned naf) { unsigned flags; int rc = MDBX_SUCCESS, foliage = 0; MDBX_env *const env = mc->txn->env;