You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
alter table pstat_series add target text not null default 'x86_64-unknown-linux-gnu';
@@ -471,8 +472,8 @@ impl PostgresConnection {
471
472
.await
472
473
.unwrap(),
473
474
get_error: conn.prepare("select benchmark, error from error where aid = $1").await.unwrap(),
474
-
insert_pstat_series: conn.prepare("insert into pstat_series (crate, profile, scenario, backend, metric, target) VALUES ($1, $2, $3, $4, $5, $6) ON CONFLICT DO NOTHING RETURNING id").await.unwrap(),
475
-
select_pstat_series: conn.prepare("select id from pstat_series where crate = $1 and profile = $2 and scenario = $3 and backend = $4 and metric = $5 and target = $6").await.unwrap(),
475
+
insert_pstat_series: conn.prepare("insert into pstat_series (crate, profile, scenario, backend, target, metric) VALUES ($1, $2, $3, $4, $5, $6) ON CONFLICT DO NOTHING RETURNING id").await.unwrap(),
476
+
select_pstat_series: conn.prepare("select id from pstat_series where crate = $1 and profile = $2 and scenario = $3 and backend = $4 and target = $5 and metric = $6").await.unwrap(),
476
477
collection_id: conn.prepare("insert into collection (perf_commit) VALUES ($1) returning id").await.unwrap(),
477
478
record_duration: conn.prepare("
478
479
insert into artifact_collection_duration (
@@ -622,7 +623,7 @@ where
622
623
pstat_series:self
623
624
.conn()
624
625
.query(
625
-
"select id, crate, profile, scenario, backend, metric, target, from pstat_series;",
626
+
"select id, crate, profile, scenario, backend, target, metric from pstat_series;",
0 commit comments