aboutsummaryrefslogtreecommitdiffstats
path: root/util/sql.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-05-22 14:39:20 +0200
committerKim Alvefur <zash@zash.se>2016-05-22 14:39:20 +0200
commit21d018938d59ceb811a504be976ec05c44527aa9 (patch)
tree0fbacc0858c54c8c025c98235af9e0f9ce32bca6 /util/sql.lua
parent2568dcd9d3623d2a5334fe86b405c2f9985d804f (diff)
parentf7c696bc0b7d8878647ba115c36ac2309c3b970b (diff)
downloadprosody-21d018938d59ceb811a504be976ec05c44527aa9.tar.gz
prosody-21d018938d59ceb811a504be976ec05c44527aa9.zip
Merge 0.10->trunk
Diffstat (limited to 'util/sql.lua')
-rw-r--r--util/sql.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/sql.lua b/util/sql.lua
index 843e7dda..6fed1373 100644
--- a/util/sql.lua
+++ b/util/sql.lua
@@ -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;