diff options
author | Matthew Wild <mwild1@gmail.com> | 2015-07-08 15:04:23 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2015-07-08 15:04:23 +0100 |
commit | 7a4ec3c57c8e38c49f6527ea00abea9a5dd3ada6 (patch) | |
tree | 0142927dcfe0d8a064b5e44fab0b707997e50d3a /util/sql.lua | |
parent | 137f76396600f44532054db2829d1e7ae2fa2cb6 (diff) | |
download | prosody-7a4ec3c57c8e38c49f6527ea00abea9a5dd3ada6.tar.gz prosody-7a4ec3c57c8e38c49f6527ea00abea9a5dd3ada6.zip |
util.sql: Create table with same charset as the charset we selected for our connection, also use corresponding _bin collation
Diffstat (limited to 'util/sql.lua')
-rw-r--r-- | util/sql.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sql.lua b/util/sql.lua index dedef435..562ac709 100644 --- a/util/sql.lua +++ b/util/sql.lua @@ -245,7 +245,7 @@ function engine:_create_table(table) if self.params.driver == "PostgreSQL" then sql = sql:gsub("`", "\""); elseif self.params.driver == "MySQL" then - sql = sql:gsub(";$", " CHARACTER SET 'utf8' COLLATE 'utf8_bin';"); + sql = sql:gsub(";$", (" CHARACTER SET '%s' COLLATE '%s_bin';"):format(self.charset, self.charset)); end local success,err = self:execute(sql); if not success then return success,err; end |