From 23f32ce65978104872d0c3463ca8543fef81a58e Mon Sep 17 00:00:00 2001 From: Andrew Duffy Date: Thu, 22 Aug 2024 13:03:55 -0400 Subject: [PATCH] weird clippy --- encodings/fsst/src/compress.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encodings/fsst/src/compress.rs b/encodings/fsst/src/compress.rs index 2033d4f6d2..d6bf950552 100644 --- a/encodings/fsst/src/compress.rs +++ b/encodings/fsst/src/compress.rs @@ -101,7 +101,7 @@ where for string in iter { match string { None => builder.push_null(), - Some(s) => builder.push_value(&compressor.compress(s)), + Some(s) => builder.push_value(compressor.compress(s).as_ref()), } }