From 89f5e38428803ae59b824f91798faef555585d40 Mon Sep 17 00:00:00 2001 From: Constantine Date: Thu, 31 Oct 2024 15:38:43 +0200 Subject: [PATCH] Add TODO comment about #500 issue --- db/core/htrie.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/db/core/htrie.c b/db/core/htrie.c index 371631521f..658ac0fc8f 100644 --- a/db/core/htrie.c +++ b/db/core/htrie.c @@ -266,7 +266,11 @@ tdb_rec_is_complete(TdbRec *rec) return rec->flags & TDB_HTRIE_COMPLETE_BIT; } -/* Intended to be called as complete of insertion, only in the same thread. */ +/** + * Intended to be called as complete of insertion, only in the same thread. + * + * TODO: Incomplete records can be used as base for implementation #500 issue. + */ void tdb_rec_mark_complete(void *rec) {