diff options
author | Alex Auvolat <alex@adnab.me> | 2022-06-07 17:50:10 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-06-07 17:50:10 +0200 |
commit | 0543cb345320a15280a5af7db941bb9fbffb4cd6 (patch) | |
tree | ff5b054bc30b3ca826d5e1eece05198ae3c16f57 /src/table | |
parent | 1bbe0794f363eb59c56548cca672013fd78f361a (diff) | |
download | garage-0543cb345320a15280a5af7db941bb9fbffb4cd6.tar.gz garage-0543cb345320a15280a5af7db941bb9fbffb4cd6.zip |
Cleaner error management (less error-prone api)
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/schema.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/schema.rs b/src/table/schema.rs index 393c7388..74f57798 100644 --- a/src/table/schema.rs +++ b/src/table/schema.rs @@ -93,7 +93,7 @@ pub trait TableSchema: Send + Sync { _tx: &mut db::Transaction, _old: Option<&Self::E>, _new: Option<&Self::E>, - ) -> db::Result<()> { + ) -> db::TxOpResult<()> { Ok(()) } |