Merge 0.10->trunk

This commit is contained in:
Kim Alvefur 2017-01-24 19:27:17 +01:00
commit d020c4eab4

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 = {