mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-12-23 13:10:06 +01:00
Fix snaps
This commit is contained in:
parent
85f42fbc03
commit
8370fbc92b
@ -340,20 +340,12 @@ pub fn snap_geo_faceted_documents_ids(index: &Index) -> String {
|
|||||||
}
|
}
|
||||||
pub fn snap_external_documents_ids(index: &Index) -> String {
|
pub fn snap_external_documents_ids(index: &Index) -> String {
|
||||||
let rtxn = index.read_txn().unwrap();
|
let rtxn = index.read_txn().unwrap();
|
||||||
let ExternalDocumentsIds { soft, hard, .. } = index.external_documents_ids(&rtxn).unwrap();
|
let external_ids = index.external_documents_ids(&rtxn).unwrap().to_hash_map();
|
||||||
|
|
||||||
let mut snap = String::new();
|
let mut snap = String::new();
|
||||||
|
|
||||||
writeln!(&mut snap, "soft:").unwrap();
|
writeln!(&mut snap, "docids:").unwrap();
|
||||||
let stream_soft = soft.stream();
|
for (key, id) in external_ids {
|
||||||
let soft_external_ids = stream_soft.into_str_vec().unwrap();
|
|
||||||
for (key, id) in soft_external_ids {
|
|
||||||
writeln!(&mut snap, "{key:<24} {id}").unwrap();
|
|
||||||
}
|
|
||||||
writeln!(&mut snap, "hard:").unwrap();
|
|
||||||
let stream_hard = hard.stream();
|
|
||||||
let hard_external_ids = stream_hard.into_str_vec().unwrap();
|
|
||||||
for (key, id) in hard_external_ids {
|
|
||||||
writeln!(&mut snap, "{key:<24} {id}").unwrap();
|
writeln!(&mut snap, "{key:<24} {id}").unwrap();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user