* Only show status changes from successful to failed and failed to
successful (not between different kinds of failure).
This commit is contained in:
		| @@ -222,7 +222,9 @@ sub makeQueries { | |||||||
|                from builds c natural join buildresultinfo r2 |                from builds c natural join buildresultinfo r2 | ||||||
|                where |                where | ||||||
|                  x.project = c.project and x.jobset = c.jobset and x.job = c.job and x.system = c.system and |                  x.project = c.project and x.jobset = c.jobset and x.job = c.job and x.system = c.system and | ||||||
|                  x.id > c.id and r.buildstatus != r2.buildstatus) |                  x.id > c.id and | ||||||
|  |                    ((r.buildstatus = 0 and r2.buildstatus != 0) or | ||||||
|  |                     (r.buildstatus != 0 and r2.buildstatus = 0))) | ||||||
| QUERY | QUERY | ||||||
|  |  | ||||||
|     makeSource( |     makeSource( | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user