datafusion-functions-aggregate 53.1.0

Traits and types for logical plans and expressions for DataFusion query engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements.  See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership.  The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License.  You may obtain a copy of the License at
//
//   http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied.  See the License for the
// specific language governing permissions and limitations
// under the License.

use std::{cmp::Ordering, sync::Arc};

use arrow::{
    array::{
        Array, ArrayData, ArrayRef, AsArray, BooleanArray, MutableArrayData, StructArray,
    },
    datatypes::DataType,
};
use datafusion_common::{
    Result, internal_err,
    scalar::{copy_array_data, partial_cmp_struct},
};
use datafusion_expr::{EmitTo, GroupsAccumulator};
use datafusion_functions_aggregate_common::aggregate::groups_accumulator::nulls::apply_filter_as_nulls;

/// Accumulator for MIN/MAX operations on Struct data types.
///
/// This accumulator tracks the minimum or maximum struct value encountered
/// during aggregation, depending on the `is_min` flag.
///
/// The comparison is done based on the struct fields in order.
pub(crate) struct MinMaxStructAccumulator {
    /// Inner data storage.
    inner: MinMaxStructState,
    /// if true, is `MIN` otherwise is `MAX`
    is_min: bool,
}

impl MinMaxStructAccumulator {
    pub fn new_min(data_type: DataType) -> Self {
        Self {
            inner: MinMaxStructState::new(data_type),
            is_min: true,
        }
    }

    pub fn new_max(data_type: DataType) -> Self {
        Self {
            inner: MinMaxStructState::new(data_type),
            is_min: false,
        }
    }
}

impl GroupsAccumulator for MinMaxStructAccumulator {
    fn update_batch(
        &mut self,
        values: &[ArrayRef],
        group_indices: &[usize],
        opt_filter: Option<&BooleanArray>,
        total_num_groups: usize,
    ) -> Result<()> {
        let array = &values[0];
        assert_eq!(array.len(), group_indices.len());
        assert_eq!(array.data_type(), &self.inner.data_type);
        // apply filter if needed
        let array = apply_filter_as_nulls(array, opt_filter)?;

        fn struct_min(a: &StructArray, b: &StructArray) -> bool {
            matches!(partial_cmp_struct(a, b), Some(Ordering::Less))
        }

        fn struct_max(a: &StructArray, b: &StructArray) -> bool {
            matches!(partial_cmp_struct(a, b), Some(Ordering::Greater))
        }

        if self.is_min {
            self.inner.update_batch(
                array.as_struct(),
                group_indices,
                total_num_groups,
                struct_min,
            )
        } else {
            self.inner.update_batch(
                array.as_struct(),
                group_indices,
                total_num_groups,
                struct_max,
            )
        }
    }

    fn evaluate(&mut self, emit_to: EmitTo) -> Result<ArrayRef> {
        let (_, min_maxes) = self.inner.emit_to(emit_to);
        let fields = match &self.inner.data_type {
            DataType::Struct(fields) => fields,
            _ => return internal_err!("Data type is not a struct"),
        };
        let null_array = StructArray::new_null(fields.clone(), 1);
        let min_maxes_data: Vec<ArrayData> = min_maxes
            .iter()
            .map(|v| match v {
                Some(v) => v.to_data(),
                None => null_array.to_data(),
            })
            .collect();
        let min_maxes_refs: Vec<&ArrayData> = min_maxes_data.iter().collect();
        let mut copy = MutableArrayData::new(min_maxes_refs, true, min_maxes_data.len());

        for (i, item) in min_maxes_data.iter().enumerate() {
            copy.extend(i, 0, item.len());
        }
        let result = copy.freeze();
        assert_eq!(&self.inner.data_type, result.data_type());
        Ok(Arc::new(StructArray::from(result)))
    }

    fn state(&mut self, emit_to: EmitTo) -> Result<Vec<ArrayRef>> {
        // min/max are their own states (no transition needed)
        self.evaluate(emit_to).map(|arr| vec![arr])
    }

    fn merge_batch(
        &mut self,
        values: &[ArrayRef],
        group_indices: &[usize],
        opt_filter: Option<&BooleanArray>,
        total_num_groups: usize,
    ) -> Result<()> {
        // min/max are their own states (no transition needed)
        self.update_batch(values, group_indices, opt_filter, total_num_groups)
    }

    fn convert_to_state(
        &self,
        values: &[ArrayRef],
        opt_filter: Option<&BooleanArray>,
    ) -> Result<Vec<ArrayRef>> {
        // Min/max do not change the values as they are their own states
        // apply the filter by combining with the null mask, if any
        let output = apply_filter_as_nulls(&values[0], opt_filter)?;
        Ok(vec![output])
    }

    fn supports_convert_to_state(&self) -> bool {
        true
    }

    fn size(&self) -> usize {
        self.inner.size()
    }
}

#[derive(Debug)]
struct MinMaxStructState {
    /// The minimum/maximum value for each group
    min_max: Vec<Option<StructArray>>,
    /// The data type of the array
    data_type: DataType,
    /// The total bytes of the string data (for pre-allocating the final array,
    /// and tracking memory usage)
    total_data_bytes: usize,
}

#[derive(Debug, Clone)]
enum MinMaxLocation {
    /// the min/max value is stored in the existing `min_max` array
    ExistingMinMax,
    /// the min/max value is stored in the input array at the given index
    Input(StructArray),
}

/// Implement the MinMaxStructState with a comparison function
/// for comparing structs
impl MinMaxStructState {
    /// Create a new MinMaxStructState
    ///
    /// # Arguments:
    /// * `data_type`: The data type of the arrays that will be passed to this accumulator
    fn new(data_type: DataType) -> Self {
        Self {
            min_max: vec![],
            data_type,
            total_data_bytes: 0,
        }
    }

    /// Set the specified group to the given value, updating memory usage appropriately
    fn set_value(&mut self, group_index: usize, new_val: &StructArray) {
        let new_val = StructArray::from(copy_array_data(&new_val.to_data()));
        match self.min_max[group_index].as_mut() {
            None => {
                self.total_data_bytes += new_val.get_array_memory_size();
                self.min_max[group_index] = Some(new_val);
            }
            Some(existing_val) => {
                // Copy data over to avoid re-allocating
                self.total_data_bytes -= existing_val.get_array_memory_size();
                self.total_data_bytes += new_val.get_array_memory_size();
                *existing_val = new_val;
            }
        }
    }

    /// Updates the min/max values for the given string values
    ///
    /// `cmp` is the  comparison function to use, called like `cmp(new_val, existing_val)`
    /// returns true if the `new_val` should replace `existing_val`
    fn update_batch<F>(
        &mut self,
        array: &StructArray,
        group_indices: &[usize],
        total_num_groups: usize,
        mut cmp: F,
    ) -> Result<()>
    where
        F: FnMut(&StructArray, &StructArray) -> bool + Send + Sync,
    {
        self.min_max.resize(total_num_groups, None);
        // Minimize value copies by calculating the new min/maxes for each group
        // in this batch (either the existing min/max or the new input value)
        // and updating the owned values in `self.min_maxes` at most once
        let mut locations = vec![MinMaxLocation::ExistingMinMax; total_num_groups];

        // Figure out the new min value for each group
        for (index, group_index) in (0..array.len()).zip(group_indices.iter()) {
            let group_index = *group_index;
            if array.is_null(index) {
                continue;
            }
            let new_val = array.slice(index, 1);

            let existing_val = match &locations[group_index] {
                // previous input value was the min/max, so compare it
                MinMaxLocation::Input(existing_val) => existing_val,
                MinMaxLocation::ExistingMinMax => {
                    let Some(existing_val) = self.min_max[group_index].as_ref() else {
                        // no existing min/max, so this is the new min/max
                        locations[group_index] = MinMaxLocation::Input(new_val);
                        continue;
                    };
                    existing_val
                }
            };

            // Compare the new value to the existing value, replacing if necessary
            if cmp(&new_val, existing_val) {
                locations[group_index] = MinMaxLocation::Input(new_val);
            }
        }

        // Update self.min_max with any new min/max values we found in the input
        for (group_index, location) in locations.iter().enumerate() {
            match location {
                MinMaxLocation::ExistingMinMax => {}
                MinMaxLocation::Input(new_val) => self.set_value(group_index, new_val),
            }
        }
        Ok(())
    }

    /// Emits the specified min_max values
    ///
    /// Returns (data_capacity, min_maxes), updating the current value of total_data_bytes
    ///
    /// - `data_capacity`: the total length of all strings and their contents,
    /// - `min_maxes`: the actual min/max values for each group
    fn emit_to(&mut self, emit_to: EmitTo) -> (usize, Vec<Option<StructArray>>) {
        match emit_to {
            EmitTo::All => {
                (
                    std::mem::take(&mut self.total_data_bytes), // reset total bytes and min_max
                    std::mem::take(&mut self.min_max),
                )
            }
            EmitTo::First(n) => {
                let first_min_maxes: Vec<_> = self.min_max.drain(..n).collect();
                let first_data_capacity: usize = first_min_maxes
                    .iter()
                    .map(|opt| opt.as_ref().map(|s| s.len()).unwrap_or(0))
                    .sum();
                self.total_data_bytes -= first_data_capacity;
                (first_data_capacity, first_min_maxes)
            }
        }
    }

    fn size(&self) -> usize {
        self.total_data_bytes + self.min_max.len() * size_of::<Option<StructArray>>()
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use arrow::array::{Int32Array, StringArray, StructArray};
    use arrow::datatypes::{DataType, Field, Fields, Int32Type};
    use std::sync::Arc;

    fn create_test_struct_array(
        int_values: Vec<Option<i32>>,
        str_values: Vec<Option<&str>>,
    ) -> StructArray {
        let int_array = Int32Array::from(int_values);
        let str_array = StringArray::from(str_values);

        let fields = vec![
            Field::new("int_field", DataType::Int32, true),
            Field::new("str_field", DataType::Utf8, true),
        ];

        StructArray::new(
            Fields::from(fields),
            vec![
                Arc::new(int_array) as ArrayRef,
                Arc::new(str_array) as ArrayRef,
            ],
            None,
        )
    }

    fn create_nested_struct_array(
        int_values: Vec<Option<i32>>,
        str_values: Vec<Option<&str>>,
    ) -> StructArray {
        let inner_struct = create_test_struct_array(int_values, str_values);

        let fields = vec![Field::new("inner", inner_struct.data_type().clone(), true)];

        StructArray::new(
            Fields::from(fields),
            vec![Arc::new(inner_struct) as ArrayRef],
            None,
        )
    }

    #[test]
    fn test_min_max_simple_struct() {
        let array = create_test_struct_array(
            vec![Some(1), Some(2), Some(3)],
            vec![Some("a"), Some("b"), Some("c")],
        );

        let mut min_accumulator =
            MinMaxStructAccumulator::new_min(array.data_type().clone());
        let mut max_accumulator =
            MinMaxStructAccumulator::new_max(array.data_type().clone());
        let values = vec![Arc::new(array) as ArrayRef];
        let group_indices = vec![0, 0, 0];

        min_accumulator
            .update_batch(&values, &group_indices, None, 1)
            .unwrap();
        max_accumulator
            .update_batch(&values, &group_indices, None, 1)
            .unwrap();
        let min_result = min_accumulator.evaluate(EmitTo::All).unwrap();
        let max_result = max_accumulator.evaluate(EmitTo::All).unwrap();
        let min_result = min_result.as_struct();
        let max_result = max_result.as_struct();

        assert_eq!(min_result.len(), 1);
        let int_array = min_result.column(0).as_primitive::<Int32Type>();
        let str_array = min_result.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 1);
        assert_eq!(str_array.value(0), "a");

        assert_eq!(max_result.len(), 1);
        let int_array = max_result.column(0).as_primitive::<Int32Type>();
        let str_array = max_result.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 3);
        assert_eq!(str_array.value(0), "c");
    }

    #[test]
    fn test_min_max_nested_struct() {
        let array = create_nested_struct_array(
            vec![Some(1), Some(2), Some(3)],
            vec![Some("a"), Some("b"), Some("c")],
        );

        let mut min_accumulator =
            MinMaxStructAccumulator::new_min(array.data_type().clone());
        let mut max_accumulator =
            MinMaxStructAccumulator::new_max(array.data_type().clone());
        let values = vec![Arc::new(array) as ArrayRef];
        let group_indices = vec![0, 0, 0];

        min_accumulator
            .update_batch(&values, &group_indices, None, 1)
            .unwrap();
        max_accumulator
            .update_batch(&values, &group_indices, None, 1)
            .unwrap();
        let min_result = min_accumulator.evaluate(EmitTo::All).unwrap();
        let max_result = max_accumulator.evaluate(EmitTo::All).unwrap();
        let min_result = min_result.as_struct();
        let max_result = max_result.as_struct();

        assert_eq!(min_result.len(), 1);
        let inner = min_result.column(0).as_struct();
        let int_array = inner.column(0).as_primitive::<Int32Type>();
        let str_array = inner.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 1);
        assert_eq!(str_array.value(0), "a");

        assert_eq!(max_result.len(), 1);
        let inner = max_result.column(0).as_struct();
        let int_array = inner.column(0).as_primitive::<Int32Type>();
        let str_array = inner.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 3);
        assert_eq!(str_array.value(0), "c");
    }

    #[test]
    fn test_min_max_with_nulls() {
        let array = create_test_struct_array(
            vec![Some(1), None, Some(3)],
            vec![Some("a"), None, Some("c")],
        );

        let mut min_accumulator =
            MinMaxStructAccumulator::new_min(array.data_type().clone());
        let mut max_accumulator =
            MinMaxStructAccumulator::new_max(array.data_type().clone());
        let values = vec![Arc::new(array) as ArrayRef];
        let group_indices = vec![0, 0, 0];

        min_accumulator
            .update_batch(&values, &group_indices, None, 1)
            .unwrap();
        max_accumulator
            .update_batch(&values, &group_indices, None, 1)
            .unwrap();
        let min_result = min_accumulator.evaluate(EmitTo::All).unwrap();
        let max_result = max_accumulator.evaluate(EmitTo::All).unwrap();
        let min_result = min_result.as_struct();
        let max_result = max_result.as_struct();

        assert_eq!(min_result.len(), 1);
        let int_array = min_result.column(0).as_primitive::<Int32Type>();
        let str_array = min_result.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 1);
        assert_eq!(str_array.value(0), "a");

        assert_eq!(max_result.len(), 1);
        let int_array = max_result.column(0).as_primitive::<Int32Type>();
        let str_array = max_result.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 3);
        assert_eq!(str_array.value(0), "c");
    }

    #[test]
    fn test_min_max_multiple_groups() {
        let array = create_test_struct_array(
            vec![Some(1), Some(2), Some(3), Some(4)],
            vec![Some("a"), Some("b"), Some("c"), Some("d")],
        );

        let mut min_accumulator =
            MinMaxStructAccumulator::new_min(array.data_type().clone());
        let mut max_accumulator =
            MinMaxStructAccumulator::new_max(array.data_type().clone());
        let values = vec![Arc::new(array) as ArrayRef];
        let group_indices = vec![0, 1, 0, 1];

        min_accumulator
            .update_batch(&values, &group_indices, None, 2)
            .unwrap();
        max_accumulator
            .update_batch(&values, &group_indices, None, 2)
            .unwrap();
        let min_result = min_accumulator.evaluate(EmitTo::All).unwrap();
        let max_result = max_accumulator.evaluate(EmitTo::All).unwrap();
        let min_result = min_result.as_struct();
        let max_result = max_result.as_struct();

        assert_eq!(min_result.len(), 2);
        let int_array = min_result.column(0).as_primitive::<Int32Type>();
        let str_array = min_result.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 1);
        assert_eq!(str_array.value(0), "a");
        assert_eq!(int_array.value(1), 2);
        assert_eq!(str_array.value(1), "b");

        assert_eq!(max_result.len(), 2);
        let int_array = max_result.column(0).as_primitive::<Int32Type>();
        let str_array = max_result.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 3);
        assert_eq!(str_array.value(0), "c");
        assert_eq!(int_array.value(1), 4);
        assert_eq!(str_array.value(1), "d");
    }

    #[test]
    fn test_min_max_with_filter() {
        let array = create_test_struct_array(
            vec![Some(1), Some(2), Some(3), Some(4)],
            vec![Some("a"), Some("b"), Some("c"), Some("d")],
        );

        // Create a filter that only keeps even numbers
        let filter = BooleanArray::from(vec![false, true, false, true]);

        let mut min_accumulator =
            MinMaxStructAccumulator::new_min(array.data_type().clone());
        let mut max_accumulator =
            MinMaxStructAccumulator::new_max(array.data_type().clone());
        let values = vec![Arc::new(array) as ArrayRef];
        let group_indices = vec![0, 0, 0, 0];

        min_accumulator
            .update_batch(&values, &group_indices, Some(&filter), 1)
            .unwrap();
        max_accumulator
            .update_batch(&values, &group_indices, Some(&filter), 1)
            .unwrap();
        let min_result = min_accumulator.evaluate(EmitTo::All).unwrap();
        let max_result = max_accumulator.evaluate(EmitTo::All).unwrap();
        let min_result = min_result.as_struct();
        let max_result = max_result.as_struct();

        assert_eq!(min_result.len(), 1);
        let int_array = min_result.column(0).as_primitive::<Int32Type>();
        let str_array = min_result.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 2);
        assert_eq!(str_array.value(0), "b");

        assert_eq!(max_result.len(), 1);
        let int_array = max_result.column(0).as_primitive::<Int32Type>();
        let str_array = max_result.column(1).as_string::<i32>();
        assert_eq!(int_array.value(0), 4);
        assert_eq!(str_array.value(0), "d");
    }
}