Skip to content

Commit 4d6d05d

Browse files
committed
Remove compacted key
1 parent 83fc799 commit 4d6d05d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

datafusion/functions-aggregate/src/array_agg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -946,7 +946,7 @@ impl Accumulator for DistinctArrayAggAccumulator {
946946
if nulls.is_some_and(|nulls| !nulls.is_valid(i)) {
947947
continue;
948948
}
949-
let key = ScalarValue::try_from_array(val, i)?.compacted();
949+
let key = ScalarValue::try_from_array(val, i)?;
950950
match self.values.get_mut(&key) {
951951
Some(count) => {
952952
*count -= 1;

0 commit comments

Comments
 (0)