| 1447 | } |
| 1448 | |
| 1449 | void typeCommand(client *c) { |
| 1450 | robj_roptr o = lookupKeyReadWithFlags(c->db,c->argv[1],LOOKUP_NOTOUCH); |
| 1451 | addReplyStatus(c, getObjectTypeName(o)); |
| 1452 | } |
| 1453 | |
| 1454 | void shutdownCommand(client *c) { |
| 1455 | int flags = 0; |
nothing calls this directly
no test coverage detected