We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83fc799 commit 4d6d05dCopy full SHA for 4d6d05d
1 file changed
datafusion/functions-aggregate/src/array_agg.rs
@@ -946,7 +946,7 @@ impl Accumulator for DistinctArrayAggAccumulator {
946
if nulls.is_some_and(|nulls| !nulls.is_valid(i)) {
947
continue;
948
}
949
- let key = ScalarValue::try_from_array(val, i)?.compacted();
+ let key = ScalarValue::try_from_array(val, i)?;
950
match self.values.get_mut(&key) {
951
Some(count) => {
952
*count -= 1;
0 commit comments