We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 57e2383 + e48f6bb commit cac6e4aCopy full SHA for cac6e4a
database/src/pool.rs
@@ -1242,6 +1242,7 @@ mod tests {
1242
CodegenBackend::Llvm,
1243
Profile::Check,
1244
0,
1245
+ BenchmarkJobKind::Compiletime,
1246
)
1247
.await
1248
.unwrap()
database/src/pool/postgres.rs
@@ -418,7 +418,7 @@ static MIGRATIONS: &[&str] = &[
418
CREATE INDEX benchmark_request_completed_idx ON benchmark_request(completed_at);
419
"#,
420
r#"
421
- ALTER TABLE job_queue ADD COLUMN kind TEXT NOT NULL;
+ ALTER TABLE job_queue ADD COLUMN kind TEXT NOT NULL DEFAULT 'compiletime';
422
423
];
424
0 commit comments