From: lpsolit%gmail.com <> Date: Tue, 19 Jul 2005 21:40:45 +0000 (+0000) Subject: Bug 300709: Avoid the use of SELECT * - Patch by Frédéric Buclin r=glob a=myk --- diff --git a/collectstats.pl b/collectstats.pl index 5d96e5b16d..ef2c72494d 100755 --- a/collectstats.pl +++ b/collectstats.pl @@ -118,7 +118,7 @@ FIN } sub calculate_dupes { - SendSQL("SELECT * FROM duplicates"); + SendSQL("SELECT dupe_of, dupe FROM duplicates"); my %dupes; my %count;