plugins/mod_storage_sql.lua
changeset 8078 a4dd08fd64cf
parent 8076 7361412a9664
child 8081 60207251863c
child 8082 b058fc4a4243
--- a/plugins/mod_storage_sql.lua	Mon Apr 10 23:13:39 2017 +0200
+++ b/plugins/mod_storage_sql.lua	Wed Apr 12 17:26:13 2017 +0200
@@ -489,7 +489,7 @@
 		check_encoding_query = check_encoding_query:format(engine.charset, engine.charset);
 		-- FIXME Is it ok to ignore the return values from this?
 		engine:transaction(function()
-			local result = engine:execute(check_encoding_query);
+			local result = assert(engine:execute(check_encoding_query));
 			local n_bad_columns = result:rowcount();
 			if n_bad_columns > 0 then
 				changes = true;