We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44c214c commit 2e8ad85Copy full SHA for 2e8ad85
1 file changed
packages/db/src/ingest-ci-run.ts
@@ -499,6 +499,11 @@ async function main(): Promise<void> {
499
[...unmappedHws].slice(0, 20).forEach((v) => console.log(` ${v}`));
500
}
501
502
+ process.stdout.write('\n Refreshing latest_benchmarks materialized view...');
503
+ const mvStart = Date.now();
504
+ await sql`REFRESH MATERIALIZED VIEW CONCURRENTLY latest_benchmarks`;
505
+ console.log(` ${Math.round((Date.now() - mvStart) / 1000)}s`);
506
+
507
console.log('\n=== ingest-ci-run complete ===');
508
509
0 commit comments