util.sql: Localize unpack() in Lua 5.2 compatible way

This commit is contained in:
Kim Alvefur 2016-02-22 17:30:12 +01:00
parent 7ebc652e1d
commit 58a6a4b140

View file

@ -1,6 +1,6 @@
local setmetatable, getmetatable = setmetatable, getmetatable;
local ipairs, unpack, select = ipairs, unpack, select;
local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113
local tonumber, tostring = tonumber, tostring;
local assert, xpcall, debug_traceback = assert, xpcall, debug.traceback;
local t_concat = table.concat;