Skip to content

Commit

Permalink
Add PartialEq, Eq traits to StatsType (#12327)
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Sep 4, 2024
1 parent e6caf62 commit 91b1d2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/functions-aggregate-common/src/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

/// TODO: Move this to functions-aggregate module
/// Enum used for differentiating population and sample for statistical functions
#[derive(Debug, Clone, Copy)]
#[derive(PartialEq, Eq, Debug, Clone, Copy)]
pub enum StatsType {
/// Population
Population,
Expand Down

0 comments on commit 91b1d2b

Please sign in to comment.