mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.sql: remove unused one-letter loop variables [luacheck]
This commit is contained in:
parent
5585dc288f
commit
8e2e80c3f3
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ end
|
|||
|
||||
function table_mt:__tostring()
|
||||
local s = { 'name="'..self.__table__.name..'"' }
|
||||
for i,col in ipairs(self.__table__) do
|
||||
for _, col in ipairs(self.__table__) do
|
||||
s[#s+1] = tostring(col);
|
||||
end
|
||||
return 'Table{ '..t_concat(s, ", ")..' }'
|
||||
|
@ -294,7 +294,7 @@ function engine:_create_table(table)
|
|||
end
|
||||
local success,err = self:execute(sql);
|
||||
if not success then return success,err; end
|
||||
for i,v in ipairs(table.__table__) do
|
||||
for _, v in ipairs(table.__table__) do
|
||||
if is_index(v) then
|
||||
self:_create_index(v);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue