- cascase sort by product_id and branch_id to give testers a fighting chance of finding the right test run when we have many of them in the future (hopefully)

git-svn-id: svn://10.0.0.236/trunk@224678 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
ccooper%deadsquid.com 2007-04-18 03:34:46 +00:00
parent 18043a7a43
commit 9ea5538e0d

View File

@ -272,9 +272,9 @@ sub getTestRuns() {
} else {
$where .= ' recommended=0';
}
$order_by = ' ORDER BY finish_timestamp ASC, test_run_id ASC';
$order_by = ' ORDER BY finish_timestamp ASC, product_id ASC, branch_id ASC, test_run_id ASC';
} else {
$order_by = ' ORDER BY recommended DESC, finish_timestamp ASC, test_run_id ASC';
$order_by = ' ORDER BY recommended DESC, finish_timestamp ASC, product_id ASC, branch_id ASC, test_run_id ASC';
}
my $sql = $select . $where . $order_by;