Commit 0506d851 authored by patpatbear's avatar patpatbear Committed by Oran Agra
Browse files

sinterstore: add missing keyspace del event when any source set not exists. (#8949)



this patch fixes sinterstore by add missing keyspace del event when any source set not exists.
Co-authored-by: default avatarsrzhao <srzhao@sysnew.com>
(cherry picked from commit 46d9f31e)
parent 0d05570a
......@@ -809,6 +809,7 @@ void sinterGenericCommand(client *c, robj **setkeys,
if (dstkey) {
if (dbDelete(c->db,dstkey)) {
signalModifiedKey(c,c->db,dstkey);
notifyKeyspaceEvent(NOTIFY_GENERIC,"del",dstkey,c->db->id);
server.dirty++;
}
addReply(c,shared.czero);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment