]> git.xonotic.org Git - xonotic/xonstatdb.git/blobdiff - queries/show_elo_rot.sql
Handle inactive players or servers in materialized views.
[xonotic/xonstatdb.git] / queries / show_elo_rot.sql
index eccbe6d471b31fb3d6bdf3b2336f16422b004ea1..33f415dcb619be75a9edae090d3c172fc71734bb 100644 (file)
@@ -5,8 +5,8 @@ select
   update_dt last_update_dt, 
   (current_date - (update_dt::date)) number_of_days, 
   (current_date - (update_dt::date))-30 number_of_days_past_30, 
-  (current_date - (update_dt::date)-31)/7 penalty,
-  greatest(100, elo - ((current_date - (update_dt::date)-31)/7)) new_elo
+  (current_date - (update_dt::date)-31)/7+1 penalty,
+  greatest(100, elo - ((current_date - (update_dt::date)-31)/7+1)) new_elo
 from player_elos
 where 
   update_dt < (current_timestamp at time zone 'UTC' - interval '30 days')