aboutsummaryrefslogtreecommitdiff
path: root/src/storage/in_memory.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-11-02 12:58:45 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-11-02 12:58:45 +0100
commit1e192f93d5bf544c82fe91fb799d77e8b5d53afe (patch)
treec069a436429cdea4ada253e6187b2b26aa2852e0 /src/storage/in_memory.rs
parent3b363b2a7803564231e001c215ab427c99c9435b (diff)
downloadaerogramme-1e192f93d5bf544c82fe91fb799d77e8b5d53afe.tar.gz
aerogramme-1e192f93d5bf544c82fe91fb799d77e8b5d53afe.zip
make all our objects send+sync
Diffstat (limited to 'src/storage/in_memory.rs')
-rw-r--r--src/storage/in_memory.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/in_memory.rs b/src/storage/in_memory.rs
index 5cc8ef8..19b55b9 100644
--- a/src/storage/in_memory.rs
+++ b/src/storage/in_memory.rs
@@ -22,7 +22,7 @@ impl IBuilders for FullMem {
}
impl IRowStore for MemStore {
- fn new_row(&self, partition: &str, sort: &str) -> RowRef {
+ fn row(&self, partition: &str, sort: &str) -> RowRef {
unimplemented!();
}
}