mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 22:27:38 +03:00
Merge 0.10->trunk
This commit is contained in:
commit
d020c4eab4
1 changed files with 2 additions and 2 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue