mod_storage_sql: Fix to use correct order for return values from transaction (thanks postblue)

This commit is contained in:
Kim Alvefur 2017-01-24 19:26:40 +01:00
parent b54ba72351
commit 1d99ff3da6

View file

@ -287,7 +287,7 @@ end
function archive_store:delete(username, query)
query = query or {};
local user,store = username,self.store;
local stmt, err = engine:transaction(function()
local ok, stmt = engine:transaction(function()
local sql_query = "DELETE FROM `prosodyarchive` WHERE %s;";
local args = { host, user or "", store, };
local where = { "`host` = ?", "`user` = ?", "`store` = ?", };
@ -300,7 +300,7 @@ function archive_store:delete(username, query)
sql_query = sql_query:format(t_concat(where, " AND "));
return engine:delete(sql_query, unpack(args));
end);
return stmt and stmt:affected() or nil, err;
return ok and stmt:affected(), stmt;
end
local stores = {