| 2838 | } |
| 2839 | |
| 2840 | void zinterstoreCommand(client *c) { |
| 2841 | zunionInterDiffGenericCommand(c, c->argv[1], 2, SET_OP_INTER); |
| 2842 | } |
| 2843 | |
| 2844 | void zdiffstoreCommand(client *c) { |
| 2845 | zunionInterDiffGenericCommand(c, c->argv[1], 2, SET_OP_DIFF); |
nothing calls this directly
no test coverage detected