SINTERSTORE destination key [key ...] */
| 1008 | |
| 1009 | /* SINTERSTORE destination key [key ...] */ |
| 1010 | void sinterstoreCommand(client *c) { |
| 1011 | sinterGenericCommand(c,c->argv+2,c->argc-2,c->argv[1]); |
| 1012 | } |
| 1013 | |
| 1014 | #define SET_OP_UNION 0 |
| 1015 | #define SET_OP_DIFF 1 |
nothing calls this directly
no test coverage detected