File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -574,8 +574,9 @@ impl PostgresConnection {
574
574
where aid = $1
575
575
" ) . await . unwrap ( ) ,
576
576
load_benchmark_request_index : conn. prepare ( "
577
- select tag, status
578
- from benchmark_request
577
+ SELECT tag, status
578
+ FROM benchmark_request
579
+ WHERE tag IS NOT NULL
579
580
" ) . await . unwrap ( ) ,
580
581
} ) ,
581
582
conn,
@@ -1506,7 +1507,7 @@ where
1506
1507
] ,
1507
1508
)
1508
1509
. await
1509
- . context ( "failed to execute UPDATE benchmark_request " ) ?;
1510
+ . context ( "failed to attach SHAs to try benchmark request " ) ?;
1510
1511
1511
1512
Ok ( ( ) )
1512
1513
}
@@ -1525,7 +1526,7 @@ where
1525
1526
backends,
1526
1527
profiles
1527
1528
FROM benchmark_request
1528
- WHERE status = ANY ('{BENCHMARK_REQUEST_STATUS_ARTIFACTS_READY_STR}', '{BENCHMARK_REQUEST_STATUS_IN_PROGRESS_STR}')"#
1529
+ WHERE status IN ('{BENCHMARK_REQUEST_STATUS_ARTIFACTS_READY_STR}', '{BENCHMARK_REQUEST_STATUS_IN_PROGRESS_STR}')"#
1529
1530
) ;
1530
1531
1531
1532
let rows = self
You can’t perform that action at this time.
0 commit comments