Skip to content

Commit 5f703de

Browse files
committed
Fix Clippy lint
1 parent 0d698b3 commit 5f703de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

extension/src/frequency.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -851,7 +851,7 @@ pub fn rollup_agg_trans_inner(
851851
in_aggregate_context(fcinfo, || {
852852
let trans = (&value, &fcinfo).into();
853853
if let Some(state) = state {
854-
Some(SpaceSavingTransState::combine(&*state, &trans).into())
854+
Some(SpaceSavingTransState::combine(&state, &trans).into())
855855
} else {
856856
Some(trans.into())
857857
}
@@ -881,7 +881,7 @@ pub fn rollup_agg_bigint_trans_inner(
881881
in_aggregate_context(fcinfo, || {
882882
let trans = (&value, &fcinfo).into();
883883
if let Some(state) = state {
884-
Some(SpaceSavingTransState::combine(&*state, &trans).into())
884+
Some(SpaceSavingTransState::combine(&state, &trans).into())
885885
} else {
886886
Some(trans.into())
887887
}
@@ -911,7 +911,7 @@ pub fn rollup_agg_text_trans_inner(
911911
in_aggregate_context(fcinfo, || {
912912
let trans = (&value, &fcinfo).into();
913913
if let Some(state) = state {
914-
Some(SpaceSavingTransState::combine(&*state, &trans).into())
914+
Some(SpaceSavingTransState::combine(&state, &trans).into())
915915
} else {
916916
Some(trans.into())
917917
}

0 commit comments

Comments
 (0)