Send a MULTI command to all the slaves and AOF file. Check the execCommand * implementation for more information. */
| 128 | /* Send a MULTI command to all the slaves and AOF file. Check the execCommand |
| 129 | * implementation for more information. */ |
| 130 | void execCommandPropagateMulti(int dbid) { |
| 131 | beforePropagateMulti(); |
| 132 | propagate(server.multiCommand,dbid,&shared.multi,1, |
| 133 | PROPAGATE_AOF|PROPAGATE_REPL); |
| 134 | } |
| 135 | |
| 136 | void execCommandPropagateExec(int dbid) { |
| 137 | propagate(server.execCommand,dbid,&shared.exec,1, |
no test coverage detected