Skip to content

Commit 91b1d2b

Browse files
authored
Add PartialEq, Eq traits to StatsType (#12327)
1 parent e6caf62 commit 91b1d2b

File tree

1 file changed

+1
-1
lines changed
  • datafusion/functions-aggregate-common/src

1 file changed

+1
-1
lines changed

datafusion/functions-aggregate-common/src/stats.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
/// TODO: Move this to functions-aggregate module
1919
/// Enum used for differentiating population and sample for statistical functions
20-
#[derive(Debug, Clone, Copy)]
20+
#[derive(PartialEq, Eq, Debug, Clone, Copy)]
2121
pub enum StatsType {
2222
/// Population
2323
Population,

0 commit comments

Comments
 (0)