mod_storage_sql: Remove Lua 5.1 compatibility hack

Part of #1600
This commit is contained in:
Kim Alvefur 2022-07-02 17:30:06 +02:00
parent 49a9a1e76a
commit 2ec8fbe7e5

View file

@ -382,8 +382,7 @@ local function archive_where(query, args, where)
-- Set of ids
if query.ids then
local nids, nargs = #query.ids, #args;
-- COMPAT Lua 5.1: No separator argument to string.rep
where[#where + 1] = "\"key\" IN (" .. string.rep("?,", nids):sub(1,-2) .. ")";
where[#where + 1] = "\"key\" IN (" .. string.rep("?", nids, ",") .. ")";
for i, id in ipairs(query.ids) do
args[nargs+i] = id;
end