mdbx: add missing err-log for MDBX_TXN_FULL during page allocation.

Change-Id: Iadb868c64fba4e9d5a4ee7df093f0cfb9288bf93
This commit is contained in:
Leonid Yuriev 2021-04-21 12:20:32 +03:00
parent c2d8c35daa
commit aaf465b942

View File

@ -6216,6 +6216,8 @@ done:
}
if (unlikely(txn->tw.dirtyroom < 1)) {
mdbx_error("Dirtyroom is depleted, DPL length %u",
txn->tw.dirtylist->length);
ret.err = MDBX_TXN_FULL;
return ret;
}