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