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
commit0ea8db94300bd49be5cd9528302f28609791858f (patch)
tree0fbacc0858c54c8c025c98235af9e0f9ce32bca6 /util/sql.lua
parentf66e61803bb5b49d2e13b2b93c5b5e4b05d2233b (diff)
parent288422c9c30c40727577f896b55596b40e0120f6 (diff)
downloadprosody-0ea8db94300bd49be5cd9528302f28609791858f.tar.gz
prosody-0ea8db94300bd49be5cd9528302f28609791858f.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;