mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_sql: Fix check for deletion limits (fixes #1494)
The check was only performed if sql_manage_tables was set to true (the default) It should always be performed
This commit is contained in:
parent
ccc5516646
commit
84e0c87b7e
1 changed files with 7 additions and 7 deletions
|
@ -622,15 +622,15 @@ 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);
|
||||
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
|
||||
engines[sql.db2uri(params)] = engine;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue