diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-17 15:23:05 +0100 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2023-11-17 15:23:05 +0100 |
commit | 89cb8d9572d623baa858cc1c6a8472053728eafc (patch) | |
tree | beca0d28b9d157b11b6db06f9e1c8377cab5acdc /src/storage/in_memory.rs | |
parent | e92dc35564e91ce4e6a8defa9e8b52eef9e55fae (diff) | |
download | aerogramme-89cb8d9572d623baa858cc1c6a8472053728eafc.tar.gz aerogramme-89cb8d9572d623baa858cc1c6a8472053728eafc.zip |
no more error on baiyou
Diffstat (limited to 'src/storage/in_memory.rs')
-rw-r--r-- | src/storage/in_memory.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/storage/in_memory.rs b/src/storage/in_memory.rs index a29b790..a2ad04f 100644 --- a/src/storage/in_memory.rs +++ b/src/storage/in_memory.rs @@ -7,7 +7,7 @@ pub struct MemStore {} pub struct MemRef {} pub struct MemValue {} -#[derive(Clone, Debug)] +#[derive(Clone, Debug, PartialEq)] pub struct MemOrphanRowRef {} impl IBuilders for FullMem { |