aboutsummaryrefslogtreecommitdiffstats
path: root/util/sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-11-12 11:38:52 +0100
committerKim Alvefur <zash@zash.se>2013-11-12 11:38:52 +0100
commit0dce82a095192a7a581511eb1455732e5a3da16c (patch)
treec50a169d303f6b37814112a080c92c49764df74b /util/sql.lua
parenta9e2cb510a760ac13bb8aeab47afdb64d19ea710 (diff)
downloadprosody-0dce82a095192a7a581511eb1455732e5a3da16c.tar.gz
prosody-0dce82a095192a7a581511eb1455732e5a3da16c.zip
util.sql: Fix previous commit
Diffstat (limited to 'util/sql.lua')
-rw-r--r--util/sql.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/sql.lua b/util/sql.lua
index 5e441c10..5a1dda5d 100644
--- a/util/sql.lua
+++ b/util/sql.lua
@@ -308,7 +308,7 @@ function engine:set_encoding() -- to UTF-8
if driver == "MySQL" then
set_names_query = set_names_query:gsub(";$", " COLLATE 'utf8_bin';");
local ok, charsets = self:transaction(function()
- return self:select"SELECT `CHARACTER_SET_NAME` FROM `CHARACTER_SETS` WHERE `information_schema`.`CHARACTER_SET_NAME` LIKE 'utf8%' ORDER BY MAXLEN DESC LIMIT 1;";
+ return self:select"SELECT `CHARACTER_SET_NAME` FROM `information_schema`.`CHARACTER_SETS` WHERE `CHARACTER_SET_NAME` LIKE 'utf8%' ORDER BY MAXLEN DESC LIMIT 1;";
end);
local row = ok and charsets();
charset = row and row[1] or charset;