mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_sql: Fix compatibilty with Lua 5.1
string.rep() doesn't have the 3rd argument before Lua 5.2 Revert once we drop support for Lua 5.1
This commit is contained in:
parent
5e6b920ecf
commit
68bd24d94c
1 changed files with 2 additions and 1 deletions
|
@ -381,7 +381,8 @@ local function archive_where(query, args, where)
|
|||
-- Set of ids
|
||||
if query.ids then
|
||||
local nids, nargs = #query.ids, #args;
|
||||
where[#where + 1] = "\"key\" IN (" .. string.rep("?", nids, ",") .. ")";
|
||||
-- COMPAT Lua 5.1: No separator argument to string.rep
|
||||
where[#where + 1] = "\"key\" IN (" .. string.rep("?,", nids):sub(1,-2) .. ")";
|
||||
for i, id in ipairs(query.ids) do
|
||||
args[nargs+i] = id;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue