Skip to content

Commit 0b8592d

Browse files
committed
feat: reorder imports in min_max.rs for improved clarity
Modified the import statements in the `min_max.rs` file to enhance readability by grouping related types together. This change organizes the code structure and follows standard conventions.
1 parent 77a518e commit 0b8592d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

datafusion/functions-aggregate/src/min_max.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1004,9 +1004,9 @@ mod tests {
10041004
use super::*;
10051005
use arrow::{
10061006
array::{
1007-
Array, DictionaryArray, Float32Array, Int32Array, Int8Array,
1008-
IntervalDayTimeArray, IntervalMonthDayNanoArray, PrimitiveArray,
1009-
IntervalYearMonthArray, StringArray,
1007+
Array, DictionaryArray, Float32Array, Int8Array, Int32Array,
1008+
IntervalDayTimeArray, IntervalMonthDayNanoArray, IntervalYearMonthArray,
1009+
PrimitiveArray, StringArray,
10101010
},
10111011
datatypes::{
10121012
ArrowDictionaryKeyType, IntervalDayTimeType, IntervalMonthDayNanoType,

0 commit comments

Comments
 (0)