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
let(corpus_size, avg_doc_len) = matchSpi::get_two::<i32,f32>(&format!("SELECT term_freq AS corpus_size, (doc_ids_len / 100.0)::real AS avg_doc_len FROM {}_bm25 WHERE term IS NULL;", table_fqn))
68
+
let table_bm25_fqn = format!("{}_bm25", table_fqn);
69
+
let(corpus_size, avg_doc_len) = matchSpi::get_two::<i32,f32>(&format!("SELECT term_freq AS corpus_size, (doc_ids_len / 100.0)::real AS avg_doc_len FROM {} WHERE term IS NULL;",
0 commit comments