| 1197 | } |
| 1198 | |
| 1199 | void sscanCommand(client *c) { |
| 1200 | robj_roptr set; |
| 1201 | unsigned long cursor; |
| 1202 | |
| 1203 | if (parseScanCursorOrReply(c,c->argv[2],&cursor) == C_ERR) return; |
| 1204 | if ((set = lookupKeyReadOrReply(c,c->argv[1],shared.emptyscan)) == nullptr || |
| 1205 | checkType(c,set,OBJ_SET)) return; |
| 1206 | scanGenericCommand(c,set,cursor); |
| 1207 | } |
nothing calls this directly
no test coverage detected