Run analyze in db_perf (#4420)

pull/4435/head^2
dullbananas 3 months ago committed by GitHub
parent 9367cbdb00
commit f631f43024
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -130,6 +130,10 @@ async fn try_main() -> LemmyResult<()> {
// Make sure the println above shows the correct amount
assert_eq!(num_inserted_posts, num_posts as usize);
// Manually trigger and wait for a statistics update to ensure consistent and high amount of accuracy in the statistics used for query planning
println!("🧮 updating database statistics");
conn.batch_execute("ANALYZE;").await?;
// Enable auto_explain
conn
.batch_execute(

Loading…
Cancel
Save