aboutsummaryrefslogtreecommitdiff
path: root/src/storage/in_memory.rs
diff options
context:
space:
mode:
authorQuentin Dufour <quentin@deuxfleurs.fr>2023-11-02 10:55:40 +0100
committerQuentin Dufour <quentin@deuxfleurs.fr>2023-11-02 10:55:40 +0100
commit1f28832deaff3a2319cc88d5a83ffe506b784fc8 (patch)
treed4cfbe576725bb0952cb9e6fb21ea2931bad851e /src/storage/in_memory.rs
parent73a6a0c014fd850a97eba175abe1ef8e2d0220b4 (diff)
downloadaerogramme-1f28832deaff3a2319cc88d5a83ffe506b784fc8.tar.gz
aerogramme-1f28832deaff3a2319cc88d5a83ffe506b784fc8.zip
start replacing engine
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 dd255ad..6fa8138 100644
--- a/src/storage/in_memory.rs
+++ b/src/storage/in_memory.rs
@@ -8,7 +8,7 @@ pub struct MemRef {}
pub struct MemValue {}
impl IRowBuilder for MemCreds {
- fn row_store(&self) -> RowStore {
+ fn row_store(&self) -> Result<RowStore, Error> {
unimplemented!();
}
}