Move geosort code out of search

This commit is contained in:
Mubelotix
2025-06-30 13:12:00 +02:00
parent 63827bbee0
commit e35d58b531
10 changed files with 257 additions and 243 deletions

View File

@ -1,9 +1,9 @@
mod builder;
mod enriched;
pub mod geo_sort;
mod primary_key;
mod reader;
mod serde_impl;
pub mod geo_sort;
use std::fmt::Debug;
use std::io;
@ -20,6 +20,7 @@ pub use primary_key::{
pub use reader::{DocumentsBatchCursor, DocumentsBatchCursorError, DocumentsBatchReader};
use serde::{Deserialize, Serialize};
pub use self::geo_sort::{GeoSortParameter, GeoSortStrategy};
use crate::error::{FieldIdMapMissingEntry, InternalError};
use crate::{FieldId, Object, Result};