LP#1549505: Filter publication years to the current year and before to avoid junk... collab/gmcharlt/lp1549505_wip_popularity_ratings
authorMike Rylander <mrylander@gmail.com>
Fri, 1 Apr 2016 00:40:49 +0000 (20:40 -0400)
committerMike Rylander <mrylander@gmail.com>
Fri, 1 Apr 2016 00:40:49 +0000 (20:40 -0400)
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Open-ILS/src/sql/Pg/upgrade/XXXX.schema.statisitcal-ratings.sql

index ae9e3a7..d6e5a22 100644 (file)
@@ -887,7 +887,8 @@ BEGIN
                 s.source = pop.id
                 AND s.attr = 'pubdate'
                 AND s.value ~ '^\d+$'
-            );
+            )
+      WHERE s.value::INT <= EXTRACT(YEAR FROM NOW())::INT;
 END;
 $f$ LANGUAGE PLPGSQL STRICT;