mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_storage_sql: Remove unused return values (should those actually be used?)
This commit is contained in:
parent
dd86b147bf
commit
67572368f2
1 changed files with 2 additions and 1 deletions
|
@ -487,7 +487,8 @@ local function upgrade_table(engine, params, apply_changes) -- luacheck: ignore
|
|||
WHERE `TABLE_NAME` LIKE 'prosody%%' AND ( `CHARACTER_SET_NAME`!='%s' OR `COLLATION_NAME`!='%s_bin' );
|
||||
]];
|
||||
check_encoding_query = check_encoding_query:format(engine.charset, engine.charset);
|
||||
success,err = engine:transaction(function()
|
||||
-- FIXME Is it ok to ignore the return values from this?
|
||||
engine:transaction(function()
|
||||
local result = engine:execute(check_encoding_query);
|
||||
local n_bad_columns = result:rowcount();
|
||||
if n_bad_columns > 0 then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue