Merge 0.11->trunk

This commit is contained in:
Kim Alvefur 2020-02-22 16:26:20 +01:00
commit 132191f6ff

View file

@ -728,14 +728,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