Software /
code /
prosody
Diff
util/sql.lua @ 8076:6e0defa19ab9
util.sql: Apply quote transform in engine:execute so it is applied to eg encoding checks in mod_storage_sql (thanks Martin)
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Wed, 12 Apr 2017 17:26:44 +0200 |
parent | 8073:7361412a9664 |
child | 8077:29b3957db212 |
line wrap: on
line diff
--- a/util/sql.lua Wed Apr 12 17:26:13 2017 +0200 +++ b/util/sql.lua Wed Apr 12 17:26:44 2017 +0200 @@ -139,6 +139,7 @@ if not success then return success, err; end local prepared = self.prepared; + sql = self:prepquery(sql); local stmt = prepared[sql]; if not stmt then local err; @@ -254,7 +255,6 @@ if index.unique then sql = sql:gsub("^CREATE", "CREATE UNIQUE"); end - sql = self:prepquery(sql); if self._debug then debugquery("create", sql); end @@ -286,7 +286,6 @@ if self.params.driver == "MySQL" then sql = sql:gsub(";$", (" CHARACTER SET '%s' COLLATE '%s_bin';"):format(self.charset, self.charset)); end - sql = self:prepquery(sql); if self._debug then debugquery("create", sql); end