diff options
author | Alex Auvolat <alex@adnab.me> | 2023-05-09 12:38:55 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-06-09 16:23:37 +0200 |
commit | 53bf2f070cd3ef95bbdf78e439dbeb2d8cda8f19 (patch) | |
tree | 318f72a46d10f1560a03c3759032a6d58b4340ec /src/table/util.rs | |
parent | 412ab77b0815f165539fe41713c0155a9878672f (diff) | |
download | garage-53bf2f070cd3ef95bbdf78e439dbeb2d8cda8f19.tar.gz garage-53bf2f070cd3ef95bbdf78e439dbeb2d8cda8f19.zip |
undo sort_key() returning Cow
Diffstat (limited to 'src/table/util.rs')
-rw-r--r-- | src/table/util.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/table/util.rs b/src/table/util.rs index 39412c79..0b10cf3f 100644 --- a/src/table/util.rs +++ b/src/table/util.rs @@ -1,5 +1,3 @@ -use std::borrow::Cow; - use serde::{Deserialize, Serialize}; use garage_util::data::*; @@ -9,8 +7,8 @@ use crate::schema::*; #[derive(Clone, PartialEq, Eq, Serialize, Deserialize)] pub struct EmptyKey; impl SortKey for EmptyKey { - fn sort_key(&self) -> Cow<'_, [u8]> { - Cow::from(&[][..]) + fn sort_key(&self) -> &[u8] { + &[] } } impl PartitionKey for EmptyKey { |