]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 300709: Avoid the use of SELECT * - Patch by Frédéric Buclin <LpSolit@gmail.com...
authorlpsolit%gmail.com <>
Tue, 19 Jul 2005 21:40:45 +0000 (21:40 +0000)
committerlpsolit%gmail.com <>
Tue, 19 Jul 2005 21:40:45 +0000 (21:40 +0000)
collectstats.pl

index 5d96e5b16debfa47cd3ca03bf668f34665247aef..ef2c72494d7a6e35dbc3e40ca4f7a79cfe24e75a 100755 (executable)
@@ -118,7 +118,7 @@ FIN
 }
 
 sub calculate_dupes {
-    SendSQL("SELECT * FROM duplicates");
+    SendSQL("SELECT dupe_of, dupe FROM duplicates");
 
     my %dupes;
     my %count;