| 765 | int RedisCallCommand(lua_State *lua) { return RedisGenericCommand(lua, 1); } |
| 766 | |
| 767 | int RedisPCallCommand(lua_State *lua) { return RedisGenericCommand(lua, 0); } |
| 768 | |
| 769 | // TODO: we do not want to repeat same logic as Connection::ExecuteCommands, |
| 770 | // so the function need to be refactored |
nothing calls this directly
no test coverage detected