mod_storage_sql2: Some reformatting and variable name improvements
authorMatthew Wild <mwild1@gmail.com>
Wed, 24 Jun 2015 21:55:41 +0000 (22:55 +0100)
committerMatthew Wild <mwild1@gmail.com>
Wed, 24 Jun 2015 21:55:41 +0000 (22:55 +0100)
plugins/mod_storage_sql2.lua

index 74f95417c170cc324131ddab817c4a5253923670..f14d32ec1f3b6f32a27341a9bde588ebc07921b8 100644 (file)
@@ -197,7 +197,7 @@ end
 local keyval_store = {};
 keyval_store.__index = keyval_store;
 function keyval_store:get(username)
-       user,store = username,self.store;
+       user, store = username, self.store;
        local ok, result = engine:transaction(keyval_store_get);
        if not ok then return ok, result; end
        return result;
@@ -361,13 +361,13 @@ function driver:open(store, typ)
 end
 
 function driver:stores(username)
-       local sql = "SELECT DISTINCT `store` FROM `prosody` WHERE `host`=? AND `user`" ..
+       local query = "SELECT DISTINCT `store` FROM `prosody` WHERE `host`=? AND `user`" ..
                (username == true and "!=?" or "=?");
        if username == true or not username then
                username = "";
        end
        local ok, result = engine:transaction(function()
-               return engine:select(sql, host, username);
+               return engine:select(query, host, username);
        end);
        if not ok then return ok, result end
        return iterator(result);
@@ -376,7 +376,7 @@ end
 function driver:purge(username)
        return engine:transaction(function()
                local stmt,err = engine:delete("DELETE FROM `prosody` WHERE `host`=? AND `user`=?", host, username);
-               return true,err;
+               return true, err;
        end);
 end