aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-01-21 01:51:13 +0100
committerKim Alvefur <zash@zash.se>2014-01-21 01:51:13 +0100
commit9550295c9d54f962435836dffc708bba67feaad5 (patch)
tree3e987e8e053e2a157752574f50cce4ff0a129127
parent372c2b460a00506bd779c8081dc3774b6e81d93b (diff)
downloadprosody-9550295c9d54f962435836dffc708bba67feaad5.tar.gz
prosody-9550295c9d54f962435836dffc708bba67feaad5.zip
mod_storage_sql2: Only attempt to delete conflicting items if an ID/key is given
-rw-r--r--plugins/mod_storage_sql2.lua7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/mod_storage_sql2.lua b/plugins/mod_storage_sql2.lua
index e02ad681..90e9ead0 100644
--- a/plugins/mod_storage_sql2.lua
+++ b/plugins/mod_storage_sql2.lua
@@ -222,9 +222,12 @@ function archive_store:append(username, key, when, with, value)
end
local user,store = username,self.store;
return engine:transaction(function()
- local key = key or uuid.generate();
+ if key then
+ engine:delete("DELETE FROM `prosodyarchive` WHERE `host`=? AND `user`=? AND `store`=? AND `key`=?", host, user or "", store, key);
+ else
+ key = uuid.generate();
+ end
local t, value = serialize(value);
- engine:delete("DELETE FROM `prosodyarchive` WHERE `host`=? AND `user`=? AND `store`=? AND `key`=?", host, user or "", store, key);
engine:insert("INSERT INTO `prosodyarchive` (`host`, `user`, `store`, `when`, `with`, `key`, `type`, `value`) VALUES (?,?,?,?,?,?,?,?)", host, user or "", store, when, with, key, t, value);
return key;
end);