mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.sql: Add safety check to ensure our chosen connection charset is actually being used (MySQL)
This commit is contained in:
parent
c23293f382
commit
376dd43396
1 changed files with 12 additions and 0 deletions
12
util/sql.lua
12
util/sql.lua
|
@ -286,6 +286,18 @@ function engine:set_encoding() -- to UTF-8
|
|||
return ok, err;
|
||||
end
|
||||
|
||||
if driver == "MySQL" then
|
||||
local ok, actual_charset = self:transaction(function ()
|
||||
return self:select"SHOW SESSION VARIABLES LIKE 'character_set_client'";
|
||||
end);
|
||||
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);
|
||||
return false, "Failed to set connection encoding";
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
return true;
|
||||
end
|
||||
local engine_mt = { __index = engine };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue