Move sort code out of facet

This commit is contained in:
Mubelotix 2025-07-01 14:05:47 +02:00
parent 9f55708d84
commit d85480de89
No known key found for this signature in database
GPG key ID: 0406DF6C3A69B942
4 changed files with 4 additions and 4 deletions

View file

@ -4,6 +4,7 @@ pub mod geo_sort;
mod primary_key;
mod reader;
mod serde_impl;
pub mod sort;
use std::fmt::Debug;
use std::io;

View file

@ -359,7 +359,7 @@ impl<'ctx> SortedDocuments<'ctx> {
}
}
pub fn recursive_facet_sort<'ctx>(
pub fn recursive_sort<'ctx>(
index: &'ctx crate::Index,
rtxn: &'ctx heed::RoTxn<'ctx>,
sort: Vec<AscDesc>,

View file

@ -1,4 +1,3 @@
pub mod facet_sort_recursive;
mod facet_type;
mod facet_value;
pub mod value_encoding;