diff options
author | Kim Alvefur <zash@zash.se> | 2014-01-21 00:51:31 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-01-21 00:51:31 +0100 |
commit | 372c2b460a00506bd779c8081dc3774b6e81d93b (patch) | |
tree | 23f18163409fc46fcc1b7fb45c057d94d352d40c /plugins | |
parent | 996847e180ee7dfcbc81e920527dfc7d62115cb9 (diff) | |
download | prosody-372c2b460a00506bd779c8081dc3774b6e81d93b.tar.gz prosody-372c2b460a00506bd779c8081dc3774b6e81d93b.zip |
mod_storage_sql2: Fix another SQL syntax error that slipped trough
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/mod_storage_sql2.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_storage_sql2.lua b/plugins/mod_storage_sql2.lua index b9e9d3ca..e02ad681 100644 --- a/plugins/mod_storage_sql2.lua +++ b/plugins/mod_storage_sql2.lua @@ -224,7 +224,7 @@ function archive_store:append(username, key, when, with, value) return engine:transaction(function() local key = key or uuid.generate(); local t, value = serialize(value); - engine:delete("DELETE FROM `prosodyarchive` WHERE `host`=? AND `user`=? AND `store`=? AND KEY=?", host, user or "", store, key); + 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); |