mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.sql: Charset should be innocent until proven guilty (initialize charset_ok to true), fixes bug introduced in 187ba2e9c012
This commit is contained in:
parent
f88b44d699
commit
c50a32df40
1 changed files with 1 additions and 1 deletions
|
@ -328,7 +328,7 @@ function engine:set_encoding() -- to UTF-8
|
|||
local ok, actual_charset = self:transaction(function ()
|
||||
return self:select"SHOW SESSION VARIABLES LIKE 'character_set_client'";
|
||||
end);
|
||||
local charset_ok;
|
||||
local charset_ok = true;
|
||||
for row in actual_charset do
|
||||
if row[2] ~= charset then
|
||||
log("error", "MySQL %s is actually %q (expected %q)", row[1], row[2], charset);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue