diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-01-21 03:26:04 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-01-21 03:26:04 +0000 |
commit | 4159b9cfe19ede5b674a3328944c4ca02de99cd7 (patch) | |
tree | 19584e158c81d91f0bc306d1969d355b454e21be /plugins/mod_storage_sql2.lua | |
parent | ed8030da5147e3ef3fdf13327e69a3a3f31e7dac (diff) | |
parent | 9498616c812b820d54e9e15372b9dafe9aa00a03 (diff) | |
download | prosody-4159b9cfe19ede5b674a3328944c4ca02de99cd7.tar.gz prosody-4159b9cfe19ede5b674a3328944c4ca02de99cd7.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_storage_sql2.lua')
-rw-r--r-- | plugins/mod_storage_sql2.lua | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/mod_storage_sql2.lua b/plugins/mod_storage_sql2.lua index b9e9d3ca..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); |