util.sql: Import type too (fix global access)

This commit is contained in:
Kim Alvefur 2016-05-22 14:37:52 +02:00
parent 8a32b7f2c3
commit 8d720b7bfb

View file

@ -2,6 +2,7 @@
local setmetatable, getmetatable = setmetatable, getmetatable;
local ipairs, unpack, select = ipairs, table.unpack or unpack, select; --luacheck: ignore 113
local tonumber, tostring = tonumber, tostring;
local type = type;
local assert, pcall, xpcall, debug_traceback = assert, pcall, xpcall, debug.traceback;
local t_concat = table.concat;
local s_char = string.char;