diff options
author | Kim Alvefur <zash@zash.se> | 2020-02-22 16:26:20 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-02-22 16:26:20 +0100 |
commit | 132191f6ffbddd5d35fdea2508ce0015bcc1a16b (patch) | |
tree | ef0115ce38bf05a865fe1cc3175f4b5ca09a38e9 /plugins | |
parent | 0b3056c44881ef8692cdb09e520a9368b29dc601 (diff) | |
parent | 6e53a3a60161ff0bde157492ed820970a5dbe736 (diff) | |
download | prosody-132191f6ffbddd5d35fdea2508ce0015bcc1a16b.tar.gz prosody-132191f6ffbddd5d35fdea2508ce0015bcc1a16b.zip |
Merge 0.11->trunk
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_sql.lua | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/mod_storage_sql.lua b/plugins/mod_storage_sql.lua index 36c77e9e..4a2f0d90 100644 --- a/plugins/mod_storage_sql.lua +++ b/plugins/mod_storage_sql.lua @@ -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 |