mod_storage_sql: Handle Lua 5.3 move of unpack function

This commit is contained in:
Kim Alvefur 2018-10-21 21:12:38 +02:00
parent 687384a94a
commit c5d487e42d

View file

@ -11,7 +11,7 @@ local is_stanza = require"util.stanza".is_stanza;
local t_concat = table.concat; local t_concat = table.concat;
local noop = function() end local noop = function() end
local unpack = unpack local unpack = table.unpack or unpack;
local function iterator(result) local function iterator(result)
return function(result_) return function(result_)
local row = result_(); local row = result_();