Software /
code /
prosody
Diff
util/sql.lua @ 7434:3b16f2802ef0
Merge 0.10->trunk
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 22 May 2016 14:39:20 +0200 |
parent | 7431:0d991d5659f0 |
child | 7513:8a6c7c4b15fb |
line wrap: on
line diff
--- a/util/sql.lua Sun May 22 02:16:57 2016 +0100 +++ b/util/sql.lua Sun May 22 14:39:20 2016 +0200 @@ -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;