Skip to content

Commit ca9d6a9

Browse files
committed
Merge branch 'median' of github.com:andygrove/arrow-datafusion into median
2 parents f31d92d + b6eae6f commit ca9d6a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

datafusion/physical-expr/src/aggregate/count_distinct.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,8 @@ impl Accumulator for DistinctCountAccumulator {
207207
});
208208

209209
Ok(cols_out
210-
.iter()
211-
.map(|v| AggregateState::Scalar(v.clone()))
210+
.into_iter()
211+
.map(|v| AggregateState::Scalar(v))
212212
.collect())
213213
}
214214

0 commit comments

Comments
 (0)