mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 22:57:38 +03:00
mod_storage_sql: Move code out of if-else chain
This commit is contained in:
parent
e0000f5fa6
commit
e54ee56ed1
1 changed files with 8 additions and 9 deletions
|
@ -390,6 +390,14 @@ function archive_store:delete(username, query)
|
|||
else
|
||||
args[#args+1] = query.truncate;
|
||||
local unlimited = "ALL";
|
||||
sql_query = [[
|
||||
DELETE FROM "prosodyarchive"
|
||||
WHERE "sort_id" IN (
|
||||
SELECT "sort_id" FROM "prosodyarchive"
|
||||
WHERE %s
|
||||
ORDER BY "sort_id" %s
|
||||
LIMIT %s OFFSET ?
|
||||
);]];
|
||||
if engine.params.driver == "SQLite3" then
|
||||
sql_query = [[
|
||||
DELETE FROM "prosodyarchive"
|
||||
|
@ -407,15 +415,6 @@ function archive_store:delete(username, query)
|
|||
LIMIT %s OFFSET ?
|
||||
) AS limiter on result.sort_id = limiter.sort_id;]];
|
||||
unlimited = "18446744073709551615";
|
||||
else
|
||||
sql_query = [[
|
||||
DELETE FROM "prosodyarchive"
|
||||
WHERE "sort_id" IN (
|
||||
SELECT "sort_id" FROM "prosodyarchive"
|
||||
WHERE %s
|
||||
ORDER BY "sort_id" %s
|
||||
LIMIT %s OFFSET ?
|
||||
);]];
|
||||
end
|
||||
sql_query = string.format(sql_query, t_concat(where, " AND "),
|
||||
query.reverse and "ASC" or "DESC", unlimited);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue