summaryrefslogtreecommitdiffstats
path: root/collectstats.pl
diff options
context:
space:
mode:
authorMax Kanat-Alexander <mkanat@bugzilla.org>2010-07-06 20:08:05 +0200
committerMax Kanat-Alexander <mkanat@bugzilla.org>2010-07-06 20:08:05 +0200
commit6576acaeea46e81f45ae5abf846166e538d1a9b6 (patch)
tree5c1e0e1b25131559fc3e87709dc449ea12256ab0 /collectstats.pl
parent6f274b8a04a1954e12b173427f674856679b9551 (diff)
downloadbugzilla-6576acaeea46e81f45ae5abf846166e538d1a9b6.tar.gz
bugzilla-6576acaeea46e81f45ae5abf846166e538d1a9b6.tar.xz
Bug 577058: Make collectstats.pl --regenerate work on PostgreSQL.
r=reed, a=LpSolit
Diffstat (limited to 'collectstats.pl')
-rwxr-xr-xcollectstats.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/collectstats.pl b/collectstats.pl
index d8987b2b9..733a1e4f1 100755
--- a/collectstats.pl
+++ b/collectstats.pl
@@ -123,7 +123,7 @@ if ($regenerate) {
my $removed_sth = $dbh->prepare(
q{SELECT bugs_activity.bug_id, bugs_activity.removed,}
. $dbh->sql_to_days('bugs_activity.bug_when')
- . q{FROM bugs_activity
+ . q{ FROM bugs_activity
WHERE bugs_activity.fieldid = ?
ORDER BY bugs_activity.bug_when});