This commit is contained in:
jiangbo212 2022-12-12 22:02:56 +08:00
parent 169682d3ec
commit fa46dfb7bb
2 changed files with 5 additions and 3 deletions

View file

@ -1,5 +1,3 @@
use crate::error::{Code, ErrorCode};
use crate::internal_error;
use either::Either;
use memmap2::MmapOptions;
use milli::documents::{DocumentsBatchBuilder, Error};
@ -13,6 +11,9 @@ use std::fs::File;
use std::io::{self, Seek, Write};
use std::marker::PhantomData;
use crate::error::{Code, ErrorCode};
use crate::internal_error;
type Result<T> = std::result::Result<T, DocumentFormatError>;
#[derive(Debug)]