mod_storage_sql: Move update limit check back one step, fixes traceback

0c00274528a4 moved it one step too far, so the check was performed
before connecting to the database instead of after.
This commit is contained in:
Kim Alvefur 2020-02-22 16:23:43 +01:00
parent 84e0c87b7e
commit 6e53a3a601

View file

@ -623,14 +623,14 @@ function module.load()
return false, "database upgrade needed";
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;
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;
end