From 4895ea63323b94f0b128d6874be997a24d3a3b0d Mon Sep 17 00:00:00 2001 From: Yorhel Date: Tue, 27 Oct 2009 22:18:27 +0100 Subject: SQL: Fixed another bug with the tags_vn_bayesian.spoiler calculation --- util/dump.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'util/dump.sql') diff --git a/util/dump.sql b/util/dump.sql index 0fdf5696..cd6f9434 100644 --- a/util/dump.sql +++ b/util/dump.sql @@ -575,7 +575,7 @@ BEGIN SELECT * FROM tags_vn UNION SELECT * FROM tag_vn_childs(); -- grouped by (tag, vid, uid), so only one user votes on one parent tag per VN entry CREATE OR REPLACE TEMPORARY VIEW tags_vn_grouped AS - SELECT tag, vid, uid, MAX(vote)::real AS vote, AVG(spoiler)::real AS spoiler + SELECT tag, vid, uid, MAX(vote)::real AS vote, COALESCE(AVG(spoiler), 0)::real AS spoiler FROM tags_vn_all GROUP BY tag, vid, uid; -- grouped by (tag, vid) and serialized into a table DROP INDEX IF EXISTS tags_vn_bayesian_tag; -- cgit v1.2.3