mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
mod_storage_sql: Fix to use correct order for return values from transaction (thanks postblue)
This commit is contained in:
parent
b54ba72351
commit
1d99ff3da6
1 changed files with 2 additions and 2 deletions
|
@ -287,7 +287,7 @@ end
|
||||||
function archive_store:delete(username, query)
|
function archive_store:delete(username, query)
|
||||||
query = query or {};
|
query = query or {};
|
||||||
local user,store = username,self.store;
|
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 sql_query = "DELETE FROM `prosodyarchive` WHERE %s;";
|
||||||
local args = { host, user or "", store, };
|
local args = { host, user or "", store, };
|
||||||
local where = { "`host` = ?", "`user` = ?", "`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 "));
|
sql_query = sql_query:format(t_concat(where, " AND "));
|
||||||
return engine:delete(sql_query, unpack(args));
|
return engine:delete(sql_query, unpack(args));
|
||||||
end);
|
end);
|
||||||
return stmt and stmt:affected() or nil, err;
|
return ok and stmt:affected(), stmt;
|
||||||
end
|
end
|
||||||
|
|
||||||
local stores = {
|
local stores = {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue