summaryrefslogtreecommitdiff
authorMichael Krelin <hacker@klever.net>2014-06-29 19:57:38 (UTC)
committer Michael Krelin <hacker@klever.net>2014-06-29 20:48:23 (UTC)
commitce34b3d32a9ae04260f95d6ade4f2d0de43daa8a (patch) (unidiff)
treee06c91d6da51a27043c75d6469805f818b8b71a0
parentd21898d430781387bc128f83e6f8aead1149a4e5 (diff)
downloadclipperz-ce34b3d32a9ae04260f95d6ade4f2d0de43daa8a.zip
clipperz-ce34b3d32a9ae04260f95d6ade4f2d0de43daa8a.tar.gz
clipperz-ce34b3d32a9ae04260f95d6ade4f2d0de43daa8a.tar.bz2
change 'DELETE' to 'TRUNCATE', because why not.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--backend/node/src/clipperz.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/node/src/clipperz.js b/backend/node/src/clipperz.js
index 5b4df0a..37b9cae 100644
--- a/backend/node/src/clipperz.js
+++ b/backend/node/src/clipperz.js
@@ -36,13 +36,13 @@ function clipperz_store(PG) {
36 rv.prototype.length = function(cb) { PG.Q( 36 rv.prototype.length = function(cb) { PG.Q(
37 "SELECT count(*) AS c FROM clipperz.thesession", function(e,r) { 37 "SELECT count(*) AS c FROM clipperz.thesession", function(e,r) {
38 cb(e,e?null:r.rows[0].c); 38 cb(e,e?null:r.rows[0].c);
39 } 39 }
40 ) }; 40 ) };
41 rv.prototype.clear = function(cb) { PQ.Q( 41 rv.prototype.clear = function(cb) { PQ.Q(
42 "DELETE FROM clipperz.thesession", cb 42 "TRUNCATE clipperz.thesession", cb
43 ) }; 43 ) };
44 rv.prototype.__proto__ = express_store.prototype; 44 rv.prototype.__proto__ = express_store.prototype;
45 return rv; 45 return rv;
46} 46}
47 47
48var srp_g = BIGNUM(2); 48var srp_g = BIGNUM(2);