aboutsummaryrefslogtreecommitdiff
path: root/src/table
diff options
context:
space:
mode:
authorTrinity Pointard <trinity.pointard@gmail.com>2021-04-07 13:39:34 +0200
committerAlex Auvolat <alex@adnab.me>2021-04-27 16:49:07 +0200
commit2812a027ea5a8ac0de22aedce9552c2420c07019 (patch)
tree6ab505b1f5e5d43907c77fcb324df3f9718239ac /src/table
parent74373aebcfdfcf5c03e4fb6510d8dd664a0b9b88 (diff)
downloadgarage-2812a027ea5a8ac0de22aedce9552c2420c07019.tar.gz
garage-2812a027ea5a8ac0de22aedce9552c2420c07019.zip
change some more comments and revert changes on TableSchema
Diffstat (limited to 'src/table')
-rw-r--r--src/table/schema.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/schema.rs b/src/table/schema.rs
index c17ccc15..13517271 100644
--- a/src/table/schema.rs
+++ b/src/table/schema.rs
@@ -76,7 +76,7 @@ pub trait TableSchema: Send + Sync {
// as the update itself is an unchangeable fact that will never go back
// due to CRDT logic. Typically errors in propagation of info should be logged
// to stderr.
- fn updated(&self, old: Option<Self::E>, new: Option<Self::E>);
+ fn updated(&self, _old: Option<Self::E>, _new: Option<Self::E>) {}
fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool;
}