]> git.rm.cloudns.org Git - xonotic/xonstatdb.git/commitdiff
Default games to 1 in another place.
authorAnt Zucaro <azucaro@gmail.com>
Sat, 21 Apr 2012 20:30:37 +0000 (16:30 -0400)
committerAnt Zucaro <azucaro@gmail.com>
Sat, 21 Apr 2012 20:30:37 +0000 (16:30 -0400)
functions/merge_players.sql

index 491f54544b7d80eaac8b10ffcc0a3eea90e2f98e..b76853b5672d2e92c2b9ec6565eb9f90968f0eae 100644 (file)
@@ -31,7 +31,7 @@ begin
    -- take the weighted average of the elos and sum the games to get the new total
    FOR weighted_elo IN (select game_type_cd, elo_sum/game_count aggregate_elo, game_count
       from (
-         select game_type_cd, greatest(sum(games*elo),1) elo_sum, sum(games) game_count 
+         select game_type_cd, sum(greatest(games, 1)*elo) elo_sum, greatest(sum(games),1) game_count 
          from player_elos 
          where player_id in (p_winner_player_id, p_loser_player_id) 
          group by game_type_cd