Skip to content

Commit

Permalink
Revert "Snapshot isolation and SSI rewrite" (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
arriqaaq authored Dec 5, 2024
1 parent 767752b commit b89b7cf
Show file tree
Hide file tree
Showing 5 changed files with 485 additions and 247 deletions.
123 changes: 61 additions & 62 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 0 additions & 2 deletions src/storage/kv/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ pub enum Error {
KeyNotFound, // The key was not found
CorruptedIndex, // The index is corrupted
TransactionReadConflict, // A read conflict occurred in the transaction
TransactionWriteConflict, // A write conflict occurred in the transaction
StoreClosed, // The store was closed
InvalidAttributeData, // The attribute data is invalid
UnknownAttributeType, // The attribute type is unknown
Expand Down Expand Up @@ -67,7 +66,6 @@ impl fmt::Display for Error {
Error::KeyNotFound => write!(f, "Key not found"),
Error::CorruptedIndex => write!(f, "Corrupted index"),
Error::TransactionReadConflict => write!(f, "Transaction read conflict"),
Error::TransactionWriteConflict => write!(f, "Transaction write conflict"),
Error::StoreClosed => write!(f, "Store closed"),
Error::InvalidAttributeData => write!(f, "Invalid attribute data"),
Error::UnknownAttributeType => write!(f, "Unknown attribute type"),
Expand Down
Loading

0 comments on commit b89b7cf

Please sign in to comment.