This commit is contained in:
Yuriy Dupyn 2024-02-05 03:29:42 +01:00
parent c0a3ee08b8
commit 1618bffb85
6 changed files with 22 additions and 152 deletions

View file

@ -8,7 +8,6 @@ pub enum Error {
IndexIsStoringEofFilePosition(Column),
ColumnAlreadyIndexed(Column),
IoError(std::io::Error),
InvalidStoreHeader,
}
#[derive(Debug)]
@ -49,5 +48,3 @@ impl From<std::io::Error> for Error {
Self::IoError(err)
}
}