From 36c2bde9885efe0b087fb65a8174ba4bf6926161 Mon Sep 17 00:00:00 2001 From: erhan1209 <82086267+erhan1209@users.noreply.github.com> Date: Wed, 15 Apr 2026 15:50:12 +0300 Subject: [PATCH] Update t_hash.c --- src/t_hash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/t_hash.c b/src/t_hash.c index db08ac62a..c8e6f2d85 100644 --- a/src/t_hash.c +++ b/src/t_hash.c @@ -2921,7 +2921,7 @@ void hgetexCommand(client *c) { updateKeysizesHist(c->db, OBJ_HASH, oldlen, hist_newlen); if (newlen == 0) { - dbDelete(c->db, c->argv[1]); + dbDeleteSkipKeysizesUpdate(c->db, c->argv[1]); notifyKeyspaceEvent(NOTIFY_GENERIC, "del", c->argv[1], c->db->id); } }