From 761248cc219da26370b98dd0b5ada0570af4c9ba 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: Wed, 15 Jan 2025 14:55:22 +0300 Subject: [PATCH] =?UTF-8?q?mdbx-doc:=20=D0=B4=D0=BE=D0=BF=D0=BE=D0=BB?= =?UTF-8?q?=D0=BD=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BE=D0=BF=D0=B8=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20`mdbx=5Ftxn=5Fcommit()`.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mdbx.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/mdbx.h b/mdbx.h index 8e37d1ce..655c62b4 100644 --- a/mdbx.h +++ b/mdbx.h @@ -4189,7 +4189,10 @@ LIBMDBX_API int mdbx_txn_commit_ex(MDBX_txn *txn, MDBX_commit_latency *latency); * \returns A non-zero error value on failure and 0 on success, * some possible errors are: * \retval MDBX_RESULT_TRUE Transaction was aborted since it should - * be aborted due to previous errors. + * be aborted due to previous errors, + * either no changes were made during the transaction, + * and the build time option + * \ref MDBX_NOSUCCESS_PURE_COMMIT was enabled. * \retval MDBX_PANIC A fatal error occurred earlier * and the environment must be shut down. * \retval MDBX_BAD_TXN Transaction is already finished or never began.