From: Ant Zucaro Date: Thu, 1 Mar 2012 04:08:20 +0000 (-0500) Subject: Get rid of bad header chars in the file. All else is the same. X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e2721c27ab39b34bd5472648305b0fac089f9c15;p=xonotic%2Fxonstatdb.git Get rid of bad header chars in the file. All else is the same. --- diff --git a/functions/merge_players.sql b/functions/merge_players.sql index 2cb6a85..f242f3e 100644 --- a/functions/merge_players.sql +++ b/functions/merge_players.sql @@ -1,4 +1,4 @@ -create or replace function merge_players(p_winner_player_id players.player_id%TYPE, p_loser_player_id players.player_id%TYPE) RETURNS void as +create or replace function merge_players(p_winner_player_id players.player_id%TYPE, p_loser_player_id players.player_id%TYPE) RETURNS void as $$ declare rowcount integer; @@ -50,4 +50,4 @@ begin update players set active_ind = false where player_id = p_loser_player_id; end; $$ -language plpgsql; \ No newline at end of file +language plpgsql;