mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_sql: Handle SQLite DELETE with LIMIT being optional (fixes #1359)
This commit is contained in:
parent
e54ee56ed1
commit
e5423a5f05
1 changed files with 15 additions and 6 deletions
|
@ -399,12 +399,14 @@ function archive_store:delete(username, query)
|
|||
LIMIT %s OFFSET ?
|
||||
);]];
|
||||
if engine.params.driver == "SQLite3" then
|
||||
sql_query = [[
|
||||
DELETE FROM "prosodyarchive"
|
||||
WHERE %s
|
||||
ORDER BY "sort_id" %s
|
||||
LIMIT %s OFFSET ?;
|
||||
]];
|
||||
if engine._have_delete_limit then
|
||||
sql_query = [[
|
||||
DELETE FROM "prosodyarchive"
|
||||
WHERE %s
|
||||
ORDER BY "sort_id" %s
|
||||
LIMIT %s OFFSET ?;
|
||||
]];
|
||||
end
|
||||
unlimited = "-1";
|
||||
elseif engine.params.driver == "MySQL" then
|
||||
sql_query = [[
|
||||
|
@ -620,6 +622,13 @@ function module.load()
|
|||
module:log("error", "Old database format detected. Please run: prosodyctl mod_%s upgrade", module.name);
|
||||
return false, "database upgrade needed";
|
||||
end
|
||||
if engine.params.driver == "SQLite3" then
|
||||
for row in engine:select("PRAGMA compile_options") do
|
||||
if row[1] == "ENABLE_UPDATE_DELETE_LIMIT" then
|
||||
engine._have_delete_limit = true;
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end);
|
||||
engines[sql.db2uri(params)] = engine;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue