# HG changeset patch # User dfraser # Date 1253179602 0 # Node ID 4e2dd03835de99d7ba34076d0a7f4ba812cfef7e # Parent ea2f162dcbe82068bbf572c8e778909e5ece8690 Adding `report.id` to the `group by` to fix for postgresql - see #451 diff --git a/bitten/report/lint.py b/bitten/report/lint.py --- a/bitten/report/lint.py +++ b/bitten/report/lint.py @@ -45,7 +45,7 @@ from bitten_report as report left outer join bitten_build as build ON (report.build=build.id) where build.config='%s' and report.category='lint' -group by build.rev_time, build.rev, build.platform +group by build.rev_time, build.rev, build.platform, report.id order by build.rev_time;""" % (config.name,) #self.log.debug('sql=\'%s\'' % (query,))