mod_storage_sql: Use config enum for 'sqlite_tune'

This commit is contained in:
Kim Alvefur 2023-07-18 11:53:12 +02:00
parent e1b3be0015
commit 3b448c4479

View file

@ -935,7 +935,7 @@ function module.load()
-- Note: These things can't be changed with in a transaction. LuaDBI
-- opens a transaction automatically for every statement(?), so this
-- will not work there.
local tune = module:get_option_string("sqlite_tune", "default");
local tune = module:get_option_enum("sqlite_tune", "default", "normal", "fast", "safe");
if tune == "normal" then
if journal_mode ~= "wal" then
engine:execute("PRAGMA journal_mode=WAL;");