aboutsummaryrefslogtreecommitdiff
path: root/src/table/schema.rs
diff options
context:
space:
mode:
authorTrinity Pointard <trinity.pointard@gmail.com>2021-04-07 13:39:34 +0200
committerTrinity Pointard <trinity.pointard@gmail.com>2021-04-07 13:39:34 +0200
commit718ae005486baeed358d56cc7cd319fedd1e76eb (patch)
treeba5e6e91380236e21f697381277817049d6e6d58 /src/table/schema.rs
parentc8906f200bf907272bf9fba7d183df4332fa085b (diff)
downloadgarage-718ae005486baeed358d56cc7cd319fedd1e76eb.tar.gz
garage-718ae005486baeed358d56cc7cd319fedd1e76eb.zip
change some more comments and revert changes on TableSchema
Diffstat (limited to 'src/table/schema.rs')
-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;
}