]> git.saurik.com Git - redis.git/commitdiff
Lua scripting: Honor SELECT command in both ways
authorantirez <antirez@gmail.com>
Mon, 2 May 2011 22:07:41 +0000 (00:07 +0200)
committerantirez <antirez@gmail.com>
Wed, 25 May 2011 10:32:47 +0000 (12:32 +0200)
src/scripting.c

index 65cbed62dbd259c34596d2ee0ec17de86dbe64d1..26e33bc705dc90d4c2d3f46cb6ed995287e273e0 100644 (file)
@@ -368,15 +368,20 @@ void evalCommand(redisClient *c) {
      * EVAL received. */
     luaSetGlobalArray(lua,"KEYS",c->argv+3,numkeys);
     luaSetGlobalArray(lua,"ARGV",c->argv+3+numkeys,c->argc-3-numkeys);
+
+    /* Select the right DB in the context of the Lua client */
+    selectDb(server.lua_client,c->db->id);
     
     /* At this point whatever this script was never seen before or if it was
      * already defined, we can call it. We have zero arguments and expect
      * a single return value. */
     if (lua_pcall(lua,0,1,0)) {
+        selectDb(c,server.lua_client->db->id); /* set DB ID from Lua client */
         addReplyErrorFormat(c,"Error running script (call to %s): %s\n",
             funcname, lua_tostring(lua,-1));
         lua_pop(lua,1);
         return;
     }
+    selectDb(c,server.lua_client->db->id); /* set DB ID from Lua client */
     luaReplyToRedisReply(c,lua);
 }