Support CSV again

This commit is contained in:
Clément Renault 2024-09-10 21:10:28 +01:00
parent c1c44a0b81
commit 8287c2644f
No known key found for this signature in database
GPG key ID: F250A4C4E3AE5F5F
4 changed files with 147 additions and 48 deletions

View file

@ -9,6 +9,7 @@ use heed::{RoTxn, RwTxn};
pub use partial_dump::PartialDump;
use rayon::iter::{IntoParallelIterator, ParallelIterator};
use rayon::ThreadPool;
pub use top_level_map::{CowStr, TopLevelMap};
pub use update_by_function::UpdateByFunction;
use super::channel::*;

View file

@ -1,4 +1,5 @@
pub use document_change::{Deletion, DocumentChange, Insertion, Update};
pub use indexer::{CowStr, TopLevelMap};
pub use items_pool::ItemsPool;
use super::del_add::DelAdd;