diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-06 20:08:05 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-07-06 20:08:05 +0200 |
commit | 6576acaeea46e81f45ae5abf846166e538d1a9b6 (patch) | |
tree | 5c1e0e1b25131559fc3e87709dc449ea12256ab0 | |
parent | 6f274b8a04a1954e12b173427f674856679b9551 (diff) | |
download | bugzilla-6576acaeea46e81f45ae5abf846166e538d1a9b6.tar.gz bugzilla-6576acaeea46e81f45ae5abf846166e538d1a9b6.tar.xz |
Bug 577058: Make collectstats.pl --regenerate work on PostgreSQL.
r=reed, a=LpSolit
-rwxr-xr-x | collectstats.pl | 2 |
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}); |