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