mod_storage_sql: Remove completed TODO (testing UPSERT on PostgreSQL)

This commit is contained in:
Kim Alvefur 2023-07-12 22:51:37 +02:00
parent 1e8743a681
commit 84c161c278

View file

@ -217,7 +217,6 @@ function map_store:set_keys(username, keydatas)
LIMIT 1;
]];
for key, data in pairs(keydatas) do
-- TODO Test UPSERT in PostgreSQL before enabling it.
if type(key) == "string" and key ~= "" and engine.params.driver ~= "MySQL" and data ~= self.remove then
local t, value = assert(serialize(data));
engine:insert(upsert_sql, host, username or "", self.store, key, t, value, t, value);