Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Snapshot isolation and SSI rewrite #132

Merged
merged 7 commits into from
Dec 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
123 changes: 62 additions & 61 deletions Cargo.lock

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

2 changes: 2 additions & 0 deletions src/storage/kv/error.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ 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 @@ -66,6 +67,7 @@ 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
Loading