mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_storage_sql: Remove completed TODO (testing UPSERT on PostgreSQL)
This commit is contained in:
parent
1e8743a681
commit
84c161c278
1 changed files with 0 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue